cosmian_kms_crypto 5.24.0

Cosmian KMS Crypto - cryptographic operations and algorithms
Documentation
mod alphabet;
pub use alphabet::{Alphabet, AlphabetPreset};

pub(crate) mod ff1;

mod kmip_fpe;
pub use kmip_fpe::{decrypt_fpe, encrypt_fpe};

mod integer;
pub use integer::Integer;

mod float;
pub use float::Float;

mod error;
pub use error::FPEError;

#[cfg(test)]
mod tests;

/// The Key Length: 256 bit = 32 bytes for AES 256
pub const KEY_LENGTH: usize = 32;