mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
crypto.sha512
This commit is contained in:

committed by
Alexander Medvednikov

parent
bdf1717703
commit
55b8a9acb9
23
vlib/crypto/crypto.v
Normal file
23
vlib/crypto/crypto.v
Normal 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
|
||||
}
|
Reference in New Issue
Block a user