Skip to main content

Argon2Params

Struct Argon2Params 

Source
pub struct Argon2Params {
    pub m_cost: u32,
    pub t_cost: u32,
    pub p_cost: u32,
    pub output_len: usize,
}
Available on (crate features kdf-hkdf or kdf-argon2) and crate feature kdf-argon2 only.
Expand description

Tuneable Argon2id parameters.

Construct via Argon2Params::default (OWASP-recommended, ~100 ms on a modern CPU) or via Argon2Params::new for custom values.

  • m_cost: memory cost in kibibytes (1 unit = 1024 bytes).
  • t_cost: number of iterations (time cost).
  • p_cost: parallelism / lanes.
  • output_len: derived-key length in bytes; defaults to 32.

Reducing any parameter reduces resistance to brute-force; the defaults are tuned for “human authentication” (login flows). For machine-to-machine credentials a higher memory/time cost is appropriate.

Fields§

§m_cost: u32

Memory cost in kibibytes.

§t_cost: u32

Time cost (iterations).

§p_cost: u32

Parallelism (number of lanes).

§output_len: usize

Derived-key length in bytes.

Implementations§

Source§

impl Argon2Params

Source

pub const fn new( m_cost: u32, t_cost: u32, p_cost: u32, output_len: usize, ) -> Self

Construct a custom parameter set.

Trait Implementations§

Source§

impl Clone for Argon2Params

Source§

fn clone(&self) -> Argon2Params

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Argon2Params

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Argon2Params

Source§

fn default() -> Self

OWASP-recommended defaults for sensitive web-facing password hashing: 19 MiB memory, 2 iterations, 1 lane, 32-byte output. Yields roughly 100 ms per hash on a modern CPU.

Source§

impl PartialEq for Argon2Params

Source§

fn eq(&self, other: &Argon2Params) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Argon2Params

Source§

impl Eq for Argon2Params

Source§

impl StructuralPartialEq for Argon2Params

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.