Browse Source

[trivial] Switched constants to sizeof()

0.14
Thomas Snider 8 years ago
parent
commit
fbc60703a5
  1. 28
      src/key.h
  2. 11
      src/pubkey.h

28
src/key.h

@ -15,7 +15,7 @@
#include <vector> #include <vector>
/** /**
* secp256k1: * secp256k1:
* const unsigned int PRIVATE_KEY_SIZE = 279; * const unsigned int PRIVATE_KEY_SIZE = 279;
* const unsigned int PUBLIC_KEY_SIZE = 65; * const unsigned int PUBLIC_KEY_SIZE = 65;
@ -45,6 +45,8 @@ private:
//! The actual byte data //! The actual byte data
unsigned char vch[32]; unsigned char vch[32];
static_assert(sizeof(vch) == 32, "vch must be 32 bytes in length to not break serialization");
//! Check whether the 32-byte array pointed to be vch is valid keydata. //! Check whether the 32-byte array pointed to be vch is valid keydata.
bool static Check(const unsigned char* vch); bool static Check(const unsigned char* vch);
@ -70,20 +72,19 @@ public:
friend bool operator==(const CKey& a, const CKey& b) friend bool operator==(const CKey& a, const CKey& b)
{ {
return a.fCompressed == b.fCompressed && a.size() == b.size() && return a.fCompressed == b.fCompressed &&
memcmp(&a.vch[0], &b.vch[0], a.size()) == 0; a.size() == b.size() &&
memcmp(&a.vch[0], &b.vch[0], a.size()) == 0;
} }
//! Initialize using begin and end iterators to byte data. //! Initialize using begin and end iterators to byte data.
template <typename T> template <typename T>
void Set(const T pbegin, const T pend, bool fCompressedIn) void Set(const T pbegin, const T pend, bool fCompressedIn)
{ {
if (pend - pbegin != 32) { if (pend - pbegin != sizeof(vch)) {
fValid = false; fValid = false;
return; } else if (Check(&pbegin[0])) {
} memcpy(vch, (unsigned char*)&pbegin[0], sizeof(vch));
if (Check(&pbegin[0])) {
memcpy(vch, (unsigned char*)&pbegin[0], 32);
fValid = true; fValid = true;
fCompressed = fCompressedIn; fCompressed = fCompressedIn;
} else { } else {
@ -92,7 +93,7 @@ public:
} }
//! Simple read-only vector-like interface. //! Simple read-only vector-like interface.
unsigned int size() const { return (fValid ? 32 : 0); } unsigned int size() const { return (fValid ? sizeof(vch) : 0); }
const unsigned char* begin() const { return vch; } const unsigned char* begin() const { return vch; }
const unsigned char* end() const { return vch + size(); } const unsigned char* end() const { return vch + size(); }
@ -110,7 +111,7 @@ public:
/** /**
* Convert the private key to a CPrivKey (serialized OpenSSL private key data). * Convert the private key to a CPrivKey (serialized OpenSSL private key data).
* This is expensive. * This is expensive.
*/ */
CPrivKey GetPrivKey() const; CPrivKey GetPrivKey() const;
@ -160,8 +161,11 @@ struct CExtKey {
friend bool operator==(const CExtKey& a, const CExtKey& b) friend bool operator==(const CExtKey& a, const CExtKey& b)
{ {
return a.nDepth == b.nDepth && memcmp(&a.vchFingerprint[0], &b.vchFingerprint[0], 4) == 0 && a.nChild == b.nChild && return a.nDepth == b.nDepth &&
a.chaincode == b.chaincode && a.key == b.key; memcmp(&a.vchFingerprint[0], &b.vchFingerprint[0], sizeof(vchFingerprint)) == 0 &&
a.nChild == b.nChild &&
a.chaincode == b.chaincode &&
a.key == b.key;
} }
void Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const; void Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const;

11
src/pubkey.h

@ -13,7 +13,7 @@
#include <stdexcept> #include <stdexcept>
#include <vector> #include <vector>
/** /**
* secp256k1: * secp256k1:
* const unsigned int PRIVATE_KEY_SIZE = 279; * const unsigned int PRIVATE_KEY_SIZE = 279;
* const unsigned int PUBLIC_KEY_SIZE = 65; * const unsigned int PUBLIC_KEY_SIZE = 65;
@ -156,7 +156,7 @@ public:
/* /*
* Check syntactic correctness. * Check syntactic correctness.
* *
* Note that this is consensus critical as CheckSig() calls it! * Note that this is consensus critical as CheckSig() calls it!
*/ */
bool IsValid() const bool IsValid() const
@ -203,8 +203,11 @@ struct CExtPubKey {
friend bool operator==(const CExtPubKey &a, const CExtPubKey &b) friend bool operator==(const CExtPubKey &a, const CExtPubKey &b)
{ {
return a.nDepth == b.nDepth && memcmp(&a.vchFingerprint[0], &b.vchFingerprint[0], 4) == 0 && a.nChild == b.nChild && return a.nDepth == b.nDepth &&
a.chaincode == b.chaincode && a.pubkey == b.pubkey; memcmp(&a.vchFingerprint[0], &b.vchFingerprint[0], sizeof(vchFingerprint)) == 0 &&
a.nChild == b.nChild &&
a.chaincode == b.chaincode &&
a.pubkey == b.pubkey;
} }
void Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const; void Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const;

Loading…
Cancel
Save