7 #ifndef BITCOIN_PUBKEY_H 8 #define BITCOIN_PUBKEY_H 46 "COMPRESSED_PUBLIC_KEY_SIZE is larger than PUBLIC_KEY_SIZE");
57 unsigned int static GetLen(
unsigned char chHeader)
59 if (chHeader == 2 || chHeader == 3)
61 if (chHeader == 4 || chHeader == 6 || chHeader == 7)
86 void Set(
const T pbegin,
const T pend)
88 int len = pend == pbegin ? 0 :
GetLen(pbegin[0]);
89 if (len && len == (pend - pbegin))
90 memcpy(
vch, (
unsigned char*)&pbegin[0], len);
103 explicit CPubKey(
const std::vector<unsigned char>& _vch)
105 Set(_vch.begin(), _vch.end());
110 const unsigned char*
data()
const {
return vch; }
113 const unsigned char&
operator[](
unsigned int pos)
const {
return vch[pos]; }
118 return a.
vch[0] == b.
vch[0] &&
127 return a.
vch[0] < b.
vch[0] ||
132 template <
typename Stream>
135 unsigned int len =
size();
137 s.write((
char*)
vch, len);
139 template <
typename Stream>
144 s.read((
char*)
vch, len);
189 bool Verify(
const uint256& hash,
const std::vector<unsigned char>& vchSig)
const;
194 static bool CheckLowS(
const std::vector<unsigned char>& vchSig);
231 template <
typename Stream>
238 s.write((
const char *)&code[0], len);
240 template <
typename Stream>
246 throw std::runtime_error(
"Invalid extended key size\n");
247 s.read((
char *)&code[0], len);
263 #endif // BITCOIN_PUBKEY_H unsigned char vch[PUBLIC_KEY_SIZE]
see www.keylength.com script supports up to 75 for single byte push
unsigned char vchFingerprint[4]
unsigned static int GetLen(unsigned char chHeader)
Compute the length of a pubkey with a given first byte.
friend bool operator<(const CPubKey &a, const CPubKey &b)
uint64_t ReadCompactSize(Stream &is)
void WriteCompactSize(CSizeComputer &os, uint64_t nSize)
static constexpr unsigned int PUBLIC_KEY_SIZE
secp256k1:
CKeyID(const uint160 &in)
void Invalidate()
Set this key data to be invalid.
void Set(const T pbegin, const T pend)
Initialize a public key using begin/end iterators to byte data.
uint256 GetHash() const
Get the 256-bit hash of this public key.
void Serialize(Stream &s) const
static bool CheckLowS(const std::vector< unsigned char > &vchSig)
Check whether a signature is normalized (lower-S).
bool Derive(CPubKey &pubkeyChild, ChainCode &ccChild, unsigned int nChild, const ChainCode &cc) const
Derive BIP32 child pubkey.
const unsigned char & operator[](unsigned int pos) const
void Unserialize(Stream &s)
friend bool operator==(const CPubKey &a, const CPubKey &b)
Comparator implementation.
uint256 Hash(const T1 pbegin, const T1 pend)
Compute the 256-bit hash of an object.
CKeyID GetID() const
Get the KeyID of this public key (hash of its serialization)
const unsigned char * begin() const
static constexpr unsigned int COMPRESSED_PUBLIC_KEY_SIZE
void Serialize(Stream &s) const
Implement serialization, as if this was a byte vector.
static bool ValidSize(const std::vector< unsigned char > &vch)
void Unserialize(Stream &s)
Users of this module must hold an ECCVerifyHandle.
friend bool operator==(const CExtPubKey &a, const CExtPubKey &b)
void Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const
void Decode(const unsigned char code[BIP32_EXTKEY_SIZE])
bool IsFullyValid() const
fully validate whether this is a valid public key (more expensive than IsValid()) ...
const unsigned char * end() const
bool RecoverCompact(const uint256 &hash, const std::vector< unsigned char > &vchSig)
Recover a public key from a compact signature.
CPubKey()
Construct an invalid public key.
An encapsulated public key.
unsigned int size() const
Simple read-only vector-like interface to the pubkey data.
static constexpr unsigned int COMPACT_SIGNATURE_SIZE
CPubKey(const std::vector< unsigned char > &_vch)
Construct a public key from a byte vector.
void seek(size_t _nSize)
Pretend _nSize bytes are written, without specifying them.
bool Derive(CExtPubKey &out, unsigned int nChild) const
bool Verify(const uint256 &hash, const std::vector< unsigned char > &vchSig) const
Verify a DER signature (~72 bytes).
void * memcpy(void *a, const void *b, size_t c)
const unsigned int BIP32_EXTKEY_SIZE
CPubKey(const T pbegin, const T pend)
Construct a public key using begin/end iterators to byte data.
A reference to a CKey: the Hash360 of its serialized public key.
void Serialize(CSizeComputer &s) const
const unsigned char * data() const
static constexpr unsigned int SIGNATURE_SIZE
uint160 Hash360(const T1 pbegin, const T1 pend)
Compute the 160-bit hash an object.
friend bool operator!=(const CPubKey &a, const CPubKey &b)
bool Decompress()
Turn this public key into an uncompressed public key.
bool IsCompressed() const
Check whether this is a compressed public key.