X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fcrypter.cpp;h=727cf090f3f1a37d397158184533b0c1b6d4841e;hb=a93ab877877925c60b2dbf56bdde8aa46b6b7391;hp=a374486c4a8b3bbdf832a02b4b1589e468428cbf;hpb=0af2f2d856e17854e7691ce4b09d9409deeb5dba;p=novacoin.git diff --git a/src/crypter.cpp b/src/crypter.cpp index a374486..727cf09 100644 --- a/src/crypter.cpp +++ b/src/crypter.cpp @@ -31,7 +31,7 @@ bool CCrypter::SetKeyFromPassphrase(const SecureString& strKeyData, const std::v i = EVP_BytesToKey(EVP_aes_256_cbc(), EVP_sha512(), &chSalt[0], (unsigned char *)&strKeyData[0], strKeyData.size(), nRounds, chKey, chIV); - if (i != WALLET_CRYPTO_KEY_SIZE) + if (i != (int)WALLET_CRYPTO_KEY_SIZE) { memset(&chKey, 0, sizeof chKey); memset(&chIV, 0, sizeof chIV);