Initial Commit

This commit is contained in:
Hannes 2021-05-13 13:24:52 +02:00
commit e43ccfa7d4
9 changed files with 540 additions and 0 deletions

12
src/lib.rs Normal file
View file

@ -0,0 +1,12 @@
#![no_std]
#![allow(stable_features)]
#![feature(alloc)]
extern crate alloc;
mod aead;
mod dh;
mod kdf_root;
mod kdf_chain;
mod header;
pub mod ratchet;