Struct custodian_password::Argon2Params [−][src]
pub struct Argon2Params {
pub algorithm: Argon2Algorithm,
pub m_cost: U32<{ Params::MIN_M_COST }, { Params::MAX_M_COST }>,
pub t_cost: NonZeroU32,
pub p_cost: U32<{ Params::MIN_P_COST }, { Params::MAX_P_COST }>,
}
Expand description
Configuration for Mhf::Argon2
.
Fields
algorithm: Argon2Algorithm
Specific algorithm to use.
m_cost: U32<{ Params::MIN_M_COST }, { Params::MAX_M_COST }>
Number of memory blocks.
t_cost: NonZeroU32
Number of passes.
p_cost: U32<{ Params::MIN_P_COST }, { Params::MAX_P_COST }>
Number of threads.
Implementations
Construct a new Argon2Params
, checking for correct integer ranges.
Errors
Error::MhfConfig
if m_cost
, t_cost
or p_cost
are out of range:
m_cost
: 8 - 0x0ffffffft_cost
: 1 - 0xffffffffp_cost
: 1 - 0x00ffffff
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Argon2Params
impl Send for Argon2Params
impl Sync for Argon2Params
impl Unpin for Argon2Params
impl UnwindSafe for Argon2Params
Blanket Implementations
Mutably borrows from an owned value. Read more