1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//! Collection of cryptographic hash functions written in pure Rust.
//! This crate provides convenient re-exports from other crates. Additionally
//! it's a `no_std` crate, so it can be easily used in embedded applications.
//!
//! # Supported algorithms
//! * [BLAKE2](https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE2)
//! * [GOST94](https://en.wikipedia.org/wiki/GOST_(hash_function))
//! (GOST R 34.11-94 and GOST 34.311-95) [weak]
//! * [MD4](https://en.wikipedia.org/wiki/MD2) [weak]
//! * [MD4](https://en.wikipedia.org/wiki/MD4) [weak]
//! * [MD5](https://en.wikipedia.org/wiki/MD5) [weak]
//! * [RIPEMD](https://en.wikipedia.org/wiki/RIPEMD)
//! * [SHA-1](https://en.wikipedia.org/wiki/SHA-1) [weak]
//! * [SHA-2](https://en.wikipedia.org/wiki/SHA-2)
//! * [SHA-3](https://en.wikipedia.org/wiki/SHA-3)
//! * [Streebog](https://en.wikipedia.org/wiki/Streebog) (GOST R 34.11-2012) [weak]
//! * [Whirlpool](https://en.wikipedia.org/wiki/Whirlpool_(cryptography))
//!
//! Algorithms marked by [weak] are not included by default. To use them enable
//! `include_weak` crate feature.
//!
//! # Usage
//!
//! ```rust
//! use crypto_hashes::digest::Digest;
//! use crypto_hashes::sha3::Sha3_256;
//!
//! // create a SHA3-256 object
//! let mut hasher = Sha3_256::default();
//!
//! // write input message
//! hasher.update(b"abc");
//!
//! // read result (this will consume hasher)
//! let out = hasher.finalize();
//!
//! assert_eq!(out[..], [0x3a, 0x98, 0x5d, 0xa7, 0x4f, 0xe2, 0x25, 0xb2,
//! 0x04, 0x5c, 0x17, 0x2d, 0x6b, 0xd3, 0x90, 0xbd,
//! 0x85, 0x5f, 0x08, 0x6e, 0x3e, 0x9d, 0x52, 0x5b,
//! 0x46, 0xbf, 0xe2, 0x45, 0x11, 0x43, 0x15, 0x32]);
//! ```
pub use blake2;
pub use gost94;
pub use groestl;
pub use md2;
pub use md4;
pub use md5;
pub use ripemd;
pub use sha1;
pub use sha2;
pub use sha3;
pub use streebog;
pub use whirlpool;
pub use digest;