argonautica 0.2.0

Idiomatic Argon2 password hashing for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code)]

use hasher::Hasher;
use output::HashRaw;
use Error;

pub(crate) fn hash_raw_rust(hasher: &mut Hasher) -> Result<HashRaw, Error> {
    let _ = hasher;
    unimplemented!()
}