8个版本 (重大变更)

使用旧的Rust 2015

0.7.0 2017年11月30日
0.6.0 2017年11月20日
0.5.0 2017年11月12日
0.4.0 2017年11月12日
0.1.1 2017年7月23日

#1349 in 密码学

每月21次下载

MIT/Apache

6KB
134

Cryptohash

抽象处理加密哈希函数的特质

文档

示例

use cryptohash::{Blake2b, CryptoHash, CryptoHashState};

fn main() {
    let mut state = Blake2b::state();
    state.write(b"hello world").unwrap();
		
    assert_eq!(
    format!("{}", state.fin()),
            "256c83b297114d201b30179f3f0ef0cace9783622da5974326b436178aeef610"
    );
}


lib.rs:

抽象处理加密哈希函数的特质。

依赖关系

~140KB