diff options
| author | Pieter Wuille <[email protected]> | 2017-02-17 11:41:45 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-02-17 21:50:14 +0100 |
| commit | f873564231d694b47e6e7e5430f4e0785a036664 (patch) | |
| tree | e62c23ed3c4e179cbf96a5ff05d3780251c4a79a /src/httprpc.cpp | |
| parent | Merge #9784: Restore removed release notes. (diff) | |
| download | discoin-f873564231d694b47e6e7e5430f4e0785a036664.tar.xz discoin-f873564231d694b47e6e7e5430f4e0785a036664.zip | |
Make KEY_SIZE a compile-time constant
Github-Pull: #9785
Rebased-From: 914fad155d9fc76b42b3a0414dd14b5ebc36062f
Diffstat (limited to 'src/httprpc.cpp')
| -rw-r--r-- | src/httprpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp index daac7a0f1..8ac6925ac 100644 --- a/src/httprpc.cpp +++ b/src/httprpc.cpp @@ -112,7 +112,7 @@ static bool multiUserAuthorized(std::string strUserPass) std::string strSalt = vFields[1]; std::string strHash = vFields[2]; - unsigned int KEY_SIZE = 32; + static const unsigned int KEY_SIZE = 32; unsigned char out[KEY_SIZE]; CHMAC_SHA256(reinterpret_cast<const unsigned char*>(strSalt.c_str()), strSalt.size()).Write(reinterpret_cast<const unsigned char*>(strPass.c_str()), strPass.size()).Finalize(out); |