oxicrypto-core 0.1.0

Pure Rust cryptography trait surface (no_std + alloc)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod aead;
pub mod hash;
pub mod kdf;
pub mod kex;
pub mod mac;
pub mod pq;
pub mod rng;
pub mod sig;

pub use aead::{Aead, StreamingAead};
pub use hash::{Hash, StreamingHash};
pub use kdf::{Kdf, PasswordHash, PasswordHashParams};
pub use kex::KeyAgreement;
pub use mac::{Mac, StreamingMac};
pub use pq::Kem;
pub use rng::Rng;
pub use sig::{KeyGenerator, Signer, Verifier};