pub async fn hash<H, P, S>(
    hash: H,
    passphrase: P,
    salt: S,
    ops_limit: u32,
    mem_limit: u32
) -> Result<(), OneErr> where
    H: 'static + Into<BufWrite> + Send,
    P: 'static + Into<BufRead> + Send,
    S: 'static + Into<BufReadSized<{_: usize}>> + Send
Expand description

argon2id13 password hashing scheme