Struct argon2::Config
[−]
[src]
pub struct Config<'a> {
pub ad: &'a [u8],
pub hash_length: u32,
pub lanes: u32,
pub mem_cost: u32,
pub secret: &'a [u8],
pub thread_mode: ThreadMode,
pub time_cost: u32,
pub variant: Variant,
pub version: Version,
}Structure containing configuration settings.
Examples
use argon2::{Config, ThreadMode, Variant, Version}; let config = Config::default(); assert_eq!(config.ad, &[]); assert_eq!(config.hash_length, 32); assert_eq!(config.lanes, 1); assert_eq!(config.mem_cost, 4096); assert_eq!(config.secret, &[]); assert_eq!(config.thread_mode, ThreadMode::Sequential); assert_eq!(config.time_cost, 3); assert_eq!(config.variant, Variant::Argon2i); assert_eq!(config.version, Version::Version13);
Fields
ad: &'a [u8]
The associated data.
hash_length: u32
The length of the resulting hash.
lanes: u32
The number of lanes.
mem_cost: u32
The amount of memory requested (KB).
secret: &'a [u8]
The key.
thread_mode: ThreadMode
The thread mode.
time_cost: u32
The number of passes.
variant: Variant
The variant.
version: Version
The version number.
Trait Implementations
impl<'a> Debug for Config<'a>[src]
impl<'a> PartialEq for Config<'a>[src]
fn eq(&self, __arg_0: &Config<'a>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Config<'a>) -> bool
This method tests for !=.