shadowsocks-crypto 0.7.0

Shadowsocks Crypto
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! AEAD 2022 Cryptographic Algorithms

pub use self::{
    aes_gcm::{Aes128Gcm, Aes256Gcm},
    chacha20_poly1305::ChaCha20Poly1305,
    xchacha20_poly1305::XChaCha20Poly1305,
};
#[cfg(feature = "v2-extra")]
pub use self::{chacha8_poly1305::ChaCha8Poly1305, xchacha8_poly1305::XChaCha8Poly1305};

pub mod aes_gcm;
pub mod chacha20_poly1305;
#[cfg(feature = "v2-extra")]
pub mod chacha8_poly1305;
#[allow(dead_code)]
pub mod xchacha20_poly1305;
#[cfg(feature = "v2-extra")]
pub mod xchacha8_poly1305;