ling-crypto 2030.0.0

Cryptography primitives for Ling — hashing, signing, and symmetric encryption
Documentation
1
2
3
4
5
6
7
8
9
//! Ling cryptography primitives

pub mod symmetric;
pub mod asymmetric;
pub mod hash;

pub use symmetric::AesGcm;
pub use asymmetric::Ed25519;
pub use hash::Blake3;