zipher 0.3.0

Cryptography utilities and implementations including Argon2, bcrypt, post-quantum algorithms and JWT support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(any(feature = "aes", feature = "full"))]
pub mod aes_gcm_siv;

#[cfg(any(feature = "argon2", feature = "full"))]
pub mod argon2;

#[cfg(any(feature = "chacha20", feature = "full"))]
pub mod chacha20poly1305;

#[cfg(any(feature = "pqdsa", feature = "full"))]
pub mod mldsa;

#[cfg(any(feature = "pqkem", feature = "full"))]
pub mod mlkem;

#[cfg(any(feature = "bcrypt", feature = "full"))]
pub mod bcrypt;