summaryrefslogtreecommitdiff
path: root/src/common/Cryptography/CryptoHash.h
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2021-05-31 14:21:54 +0200
committerGitHub <noreply@github.com>2021-05-31 14:21:54 +0200
commit897a02bb75ec759f1052fc54332441c12da83cb8 (patch)
tree64c766466f94f050cf32e7fee1c2f7d6834362d5 /src/common/Cryptography/CryptoHash.h
parent7eeae6866e70456b6d4806d62fac4d27fbf5c3c7 (diff)
refactor(Core/Misc): acore to Acore (#6043)
Diffstat (limited to 'src/common/Cryptography/CryptoHash.h')
-rw-r--r--src/common/Cryptography/CryptoHash.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/Cryptography/CryptoHash.h b/src/common/Cryptography/CryptoHash.h
index cdc3258834..aa4c85b8fd 100644
--- a/src/common/Cryptography/CryptoHash.h
+++ b/src/common/Cryptography/CryptoHash.h
@@ -16,7 +16,7 @@
class BigNumber;
-namespace acore::Impl
+namespace Acore::Impl
{
struct GenericHashImpl
{
@@ -98,10 +98,10 @@ namespace acore::Impl
};
}
-namespace acore::Crypto
+namespace Acore::Crypto
{
- using SHA1 = acore::Impl::GenericHash<EVP_sha1, Constants::SHA1_DIGEST_LENGTH_BYTES>;
- using SHA256 = acore::Impl::GenericHash<EVP_sha256, Constants::SHA256_DIGEST_LENGTH_BYTES>;
+ using SHA1 = Acore::Impl::GenericHash<EVP_sha1, Constants::SHA1_DIGEST_LENGTH_BYTES>;
+ using SHA256 = Acore::Impl::GenericHash<EVP_sha256, Constants::SHA256_DIGEST_LENGTH_BYTES>;
}
#endif