Skip to main content

ssec_core/
lib.rs

1mod util;
2
3const DEFAULT_BYTES_PER_POLL: core::num::NonZeroUsize = core::num::NonZeroUsize::new(128).unwrap();
4
5const HEADER_LENGTH: usize = 150;
6
7type Aes256Ctr = ctr::Ctr64LE<aes::Aes256>;
8
9pub mod encrypt;
10pub use encrypt::{Encrypt, EncryptArgs};
11
12pub mod decrypt;
13pub use decrypt::{Decrypt, DecryptArgs};
14
15pub mod chaff;
16pub use chaff::{ChaffStream, ChaffStreamArgs};
17
18#[cfg(test)]
19mod tests;
20
21#[cfg(test)]
22mod qc_tests;