diff options
| author | Pieter Wuille <[email protected]> | 2017-02-17 11:41:45 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2017-02-17 11:42:22 -0800 |
| commit | 914fad155d9fc76b42b3a0414dd14b5ebc36062f (patch) | |
| tree | a88e47c6feb771fd23c77ef3cbf2e028e1bdc1d1 /src/httprpc.cpp | |
| parent | build: bump version to 0.14.99 (diff) | |
| download | discoin-914fad155d9fc76b42b3a0414dd14b5ebc36062f.tar.xz discoin-914fad155d9fc76b42b3a0414dd14b5ebc36062f.zip | |
Make KEY_SIZE a compile-time constant
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); |