mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 15:27:57 +00:00
Fix misc. minor sign-comparison warnings
This commit is contained in:
parent
0dd710acb6
commit
9fb89c26f3
@ -288,7 +288,7 @@ public:
|
|||||||
|
|
||||||
bool IsValid() const
|
bool IsValid() const
|
||||||
{
|
{
|
||||||
int nExpectedSize = 20;
|
unsigned int nExpectedSize = 20;
|
||||||
bool fExpectTestNet = false;
|
bool fExpectTestNet = false;
|
||||||
switch(nVersion)
|
switch(nVersion)
|
||||||
{
|
{
|
||||||
|
@ -31,7 +31,7 @@ bool CCrypter::SetKeyFromPassphrase(const SecureString& strKeyData, const std::v
|
|||||||
i = EVP_BytesToKey(EVP_aes_256_cbc(), EVP_sha512(), &chSalt[0],
|
i = EVP_BytesToKey(EVP_aes_256_cbc(), EVP_sha512(), &chSalt[0],
|
||||||
(unsigned char *)&strKeyData[0], strKeyData.size(), nRounds, chKey, chIV);
|
(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(&chKey, 0, sizeof chKey);
|
||||||
memset(&chIV, 0, sizeof chIV);
|
memset(&chIV, 0, sizeof chIV);
|
||||||
|
@ -173,7 +173,7 @@ public:
|
|||||||
|
|
||||||
CPrivKey GetPrivKey() const
|
CPrivKey GetPrivKey() const
|
||||||
{
|
{
|
||||||
unsigned int nSize = i2d_ECPrivateKey(pkey, NULL);
|
int nSize = i2d_ECPrivateKey(pkey, NULL);
|
||||||
if (!nSize)
|
if (!nSize)
|
||||||
throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey failed");
|
throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey failed");
|
||||||
CPrivKey vchPrivKey(nSize, 0);
|
CPrivKey vchPrivKey(nSize, 0);
|
||||||
@ -196,7 +196,7 @@ public:
|
|||||||
|
|
||||||
std::vector<unsigned char> GetPubKey() const
|
std::vector<unsigned char> GetPubKey() const
|
||||||
{
|
{
|
||||||
unsigned int nSize = i2o_ECPublicKey(pkey, NULL);
|
int nSize = i2o_ECPublicKey(pkey, NULL);
|
||||||
if (!nSize)
|
if (!nSize)
|
||||||
throw key_error("CKey::GetPubKey() : i2o_ECPublicKey failed");
|
throw key_error("CKey::GetPubKey() : i2o_ECPublicKey failed");
|
||||||
std::vector<unsigned char> vchPubKey(nSize, 0);
|
std::vector<unsigned char> vchPubKey(nSize, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user