1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Sarkara is a Post-Quantum cryptography library.

#![warn(missing_docs)]
#![feature(question_mark, try_from)]

extern crate rand;
extern crate seckey;
extern crate blake2_rfc;
extern crate argon2rs;
extern crate hc256;
extern crate ascon;
extern crate newhope;
extern crate blissb;
extern crate byteorder;

#[macro_use] pub mod utils;
pub mod hash;
pub mod pwhash;
pub mod auth;
pub mod stream;
pub mod aead;
pub mod kex;
pub mod secretbox;
pub mod sealedbox;
pub mod sign;