argonautica 0.2.0

Idiomatic Argon2 password hashing for Rust
Documentation
1
2
3
4
5
6
7
8
#![cfg(test)]

use output::HashRaw;
use Error;

pub(crate) fn decode_c(_hash: &str) -> Result<HashRaw, Error> {
    unimplemented!(); // TODO:
}