dcrypt_algorithms/stream/chacha/
mod.rs

1// Make the chacha20 module public
2pub mod chacha20;
3// Remove reference to non-existent chacha12 module
4
5// Re-export for convenience
6pub use chacha20::ChaCha20;