OCaml implementation of the Noise Protocol Framework.
Not ready for primetime.
More precisely, some primitives are implemented in an ad hoc manner. This passes a good amount of test vectors, but this has not been properly fuzzed and there are no countermeasures with respect to side channel attacks.
This is not an implementation of a full cryptographic protocol that you can drop into your application and have secure channels.
This is an implementation of the Noise Protocol Framework. It consists of building bricks that can be used to create a secure cryptographic protocol.
Because of the way Noise works, it is possible to process messages in full without dealing with I/O or buffering. So, this library only deals with the handshake and encrypting/decrypting payloads.
Refer to the examples in test/examples/
for an example, but basically:
- pick a protocol
- import or generate the relevant keys on each side
- create initial states using
Noise.State.make
andNoise.Protocol.initialize
- drive the handshake using
Noise.Protocol.read_message
andNoise.Protocol.write_message
- check that the handshake is completed (see
Noise.State.handshake_hash
) - send transport messages using
Noise.Protocol.read_message
andNoise.Protocol.write_message