aboutsummaryrefslogtreecommitdiff
path: root/src/common/Cryptography/CryptoHash.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2023-12-19 21:13:33 +0100
committerShauren <shauren.trinity@gmail.com>2023-12-19 21:13:33 +0100
commite172052a0ac0e983a49cc0647fda8df4257dbdcf (patch)
tree16823223ebc0cfdbf8f4c961612148d5c5ea1f83 /src/common/Cryptography/CryptoHash.h
parent53ac8d3ef5621f7137092b7aeeebf42730059181 (diff)
Core/Crypto: Added SHA 512 definitions
Diffstat (limited to 'src/common/Cryptography/CryptoHash.h')
-rw-r--r--src/common/Cryptography/CryptoHash.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Cryptography/CryptoHash.h b/src/common/Cryptography/CryptoHash.h
index cb7e5716e66..34b299c1d4f 100644
--- a/src/common/Cryptography/CryptoHash.h
+++ b/src/common/Cryptography/CryptoHash.h
@@ -140,6 +140,7 @@ namespace Trinity::Crypto
using MD5 = Trinity::Impl::GenericHash<EVP_md5, Constants::MD5_DIGEST_LENGTH_BYTES>;
using SHA1 = Trinity::Impl::GenericHash<EVP_sha1, Constants::SHA1_DIGEST_LENGTH_BYTES>;
using SHA256 = Trinity::Impl::GenericHash<EVP_sha256, Constants::SHA256_DIGEST_LENGTH_BYTES>;
+ using SHA512 = Trinity::Impl::GenericHash<EVP_sha512, Constants::SHA512_DIGEST_LENGTH_BYTES>;
}
#endif