Struct crypto::scrypt::ScryptParams [] [src]

pub struct ScryptParams {
    // some fields omitted
}

The Scrypt parameter values.

Methods

impl ScryptParams
[src]

fn new(log_n: u8, r: u32, p: u32) -> ScryptParams

Create a new instance of ScryptParams.

Arguments

  • log_n - The log2 of the Scrypt parameter N
  • r - The Scrypt parameter r
  • p - The Scrypt parameter p

Trait Implementations

impl Copy for ScryptParams
[src]

impl Clone for ScryptParams
[src]

fn clone(&self) -> ScryptParams

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more