1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

crypto.sha512

This commit is contained in:
joe-conigliaro
2019-07-17 19:00:15 +10:00
committed by Alexander Medvednikov
parent bdf1717703
commit 55b8a9acb9
8 changed files with 662 additions and 11 deletions

23
vlib/crypto/crypto.v Normal file
View File

@ -0,0 +1,23 @@
module crypto
enum Hash {
MD4
MD5
SHA1
SHA224
SHA256
SHA384
SHA512
MD5SHA1
RIPEMD160
SHA3_224
SHA3_256
SHA3_384
SHA3_512
SHA512_224
SHA512_256
BLAKE2s_256
BLAKE2b_256
BLAKE2b_384
BLAKE2b_512
}