diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-05-13 11:41:54 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-05-13 11:41:54 +0200 |
commit | 546d23264c8886cad0dc03f2df9c64e999c8573a (patch) | |
tree | 0f523886bedefc3df484d3e33ee028dbce4c05c1 /src/common/Cryptography/Authentication | |
parent | 5ee93f177d8fa88cea5a3fbe103872325908fa87 (diff) |
Core/Misc: Make string and string_view literal suffixes globally available
Diffstat (limited to 'src/common/Cryptography/Authentication')
-rw-r--r-- | src/common/Cryptography/Authentication/SRP6.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/Cryptography/Authentication/SRP6.cpp b/src/common/Cryptography/Authentication/SRP6.cpp index e015b8c33f6..25ed10de56a 100644 --- a/src/common/Cryptography/Authentication/SRP6.cpp +++ b/src/common/Cryptography/Authentication/SRP6.cpp @@ -16,14 +16,13 @@ */ #include "SRP6.h" +#include "Common.h" #include "CryptoRandom.h" #include <algorithm> #include <functional> namespace Trinity::Crypto::SRP { -using namespace std::string_literals; - BigNumber const GruntSRP6::N = "894B645E89E1535BBDAD5B8B290650530801B18EBFBF5E8FAB3C82872A3E9BB7"s; BigNumber const GruntSRP6::g = 7; |