Created
June 11, 2020 14:24
-
-
Save BetterProgramming/e166d8c67457a8da88e4b63af6360fbd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ( | |
MD4 // import golang.org/x/crypto/md4 | |
MD5 // import crypto/md5 | |
SHA1 // import crypto/sha1 | |
SHA224 // import crypto/sha256 | |
SHA256 // import crypto/sha256 | |
SHA384 // import crypto/sha512 | |
SHA512 // import crypto/sha512 | |
RIPEMD160 // import golang.org/x/crypto/ripemd160 | |
SHA3_224 // import golang.org/x/crypto/sha3 | |
SHA3_256 // import golang.org/x/crypto/sha3 | |
SHA3_384 // import golang.org/x/crypto/sha3 | |
SHA3_512 // import golang.org/x/crypto/sha3 | |
SHA512_224 // import crypto/sha512 | |
SHA512_256 // import crypto/sha512 | |
BLAKE2s_256 // import golang.org/x/crypto/blake2s | |
BLAKE2b_256 // import golang.org/x/crypto/blake2b | |
BLAKE2b_384 // import golang.org/x/crypto/blake2b | |
BLAKE2b_512 // import golang.org/x/crypto/blake2b | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment