v / vlib / crypto
Raw file | 23 loc (22 sloc) | 217 bytes | Latest commit hash 8a380f469
1module crypto
2
3pub enum Hash {
4 md4
5 md5
6 sha1
7 sha224
8 sha256
9 sha384
10 sha512
11 md5sha1
12 ripemd160
13 sha3_224
14 sha3_256
15 sha3_384
16 sha3_512
17 sha512_224
18 sha512_256
19 blake2s_256
20 blake2b_256
21 blake2b_384
22 blake2b_512
23}