mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Merge #12461: scripted-diff: Rename key size consts to be relative to their class
0580f86bb48004b797d4cb6273e7ffee0b0a0584 Fixup whitespace (Ben Woosley)
47101bbb27d0e13ea2b40ce1c7ff0dba9030f369 scripted-diff: Rename CPubKey and CKey::*_KEY_SIZE and COMPRESSED_*_KEY_SIZE (Ben Woosley)
Pull request description:
~~And introduce CPubKeySig to host code relative to key sigs.~~
ACKs for top commit:
meshcollider:
utACK 0580f86bb4
Tree-SHA512: 29aa0be54912358b138e391b9db78639786f56580493e590ec9f773c0e1b421740133d05a79be247c7ee57e71c9c9e41b9cb54088cb3c0e3f813f74f0895287b
This commit is contained in:
parent
c4f7bb5d72
commit
81b8eb4083
20
src/key.cpp
20
src/key.cpp
@ -84,13 +84,13 @@ static int ec_privkey_import_der(const secp256k1_context* ctx, unsigned char *ou
|
|||||||
* <http://www.secg.org/sec1-v2.pdf>. The optional parameters and publicKey fields are
|
* <http://www.secg.org/sec1-v2.pdf>. The optional parameters and publicKey fields are
|
||||||
* included.
|
* included.
|
||||||
*
|
*
|
||||||
* privkey must point to an output buffer of length at least CKey::PRIVATE_KEY_SIZE bytes.
|
* privkey must point to an output buffer of length at least CKey::SIZE bytes.
|
||||||
* privkeylen must initially be set to the size of the privkey buffer. Upon return it
|
* privkeylen must initially be set to the size of the privkey buffer. Upon return it
|
||||||
* will be set to the number of bytes used in the buffer.
|
* will be set to the number of bytes used in the buffer.
|
||||||
* key32 must point to a 32-byte raw private key.
|
* key32 must point to a 32-byte raw private key.
|
||||||
*/
|
*/
|
||||||
static int ec_privkey_export_der(const secp256k1_context *ctx, unsigned char *privkey, size_t *privkeylen, const unsigned char *key32, bool compressed) {
|
static int ec_privkey_export_der(const secp256k1_context *ctx, unsigned char *privkey, size_t *privkeylen, const unsigned char *key32, bool compressed) {
|
||||||
assert(*privkeylen >= CKey::PRIVATE_KEY_SIZE);
|
assert(*privkeylen >= CKey::SIZE);
|
||||||
secp256k1_pubkey pubkey;
|
secp256k1_pubkey pubkey;
|
||||||
size_t pubkeylen = 0;
|
size_t pubkeylen = 0;
|
||||||
if (!secp256k1_ec_pubkey_create(ctx, &pubkey, key32)) {
|
if (!secp256k1_ec_pubkey_create(ctx, &pubkey, key32)) {
|
||||||
@ -116,11 +116,11 @@ static int ec_privkey_export_der(const secp256k1_context *ctx, unsigned char *pr
|
|||||||
memcpy(ptr, begin, sizeof(begin)); ptr += sizeof(begin);
|
memcpy(ptr, begin, sizeof(begin)); ptr += sizeof(begin);
|
||||||
memcpy(ptr, key32, 32); ptr += 32;
|
memcpy(ptr, key32, 32); ptr += 32;
|
||||||
memcpy(ptr, middle, sizeof(middle)); ptr += sizeof(middle);
|
memcpy(ptr, middle, sizeof(middle)); ptr += sizeof(middle);
|
||||||
pubkeylen = CPubKey::COMPRESSED_PUBLIC_KEY_SIZE;
|
pubkeylen = CPubKey::COMPRESSED_SIZE;
|
||||||
secp256k1_ec_pubkey_serialize(ctx, ptr, &pubkeylen, &pubkey, SECP256K1_EC_COMPRESSED);
|
secp256k1_ec_pubkey_serialize(ctx, ptr, &pubkeylen, &pubkey, SECP256K1_EC_COMPRESSED);
|
||||||
ptr += pubkeylen;
|
ptr += pubkeylen;
|
||||||
*privkeylen = ptr - privkey;
|
*privkeylen = ptr - privkey;
|
||||||
assert(*privkeylen == CKey::COMPRESSED_PRIVATE_KEY_SIZE);
|
assert(*privkeylen == CKey::COMPRESSED_SIZE);
|
||||||
} else {
|
} else {
|
||||||
static const unsigned char begin[] = {
|
static const unsigned char begin[] = {
|
||||||
0x30,0x82,0x01,0x13,0x02,0x01,0x01,0x04,0x20
|
0x30,0x82,0x01,0x13,0x02,0x01,0x01,0x04,0x20
|
||||||
@ -142,11 +142,11 @@ static int ec_privkey_export_der(const secp256k1_context *ctx, unsigned char *pr
|
|||||||
memcpy(ptr, begin, sizeof(begin)); ptr += sizeof(begin);
|
memcpy(ptr, begin, sizeof(begin)); ptr += sizeof(begin);
|
||||||
memcpy(ptr, key32, 32); ptr += 32;
|
memcpy(ptr, key32, 32); ptr += 32;
|
||||||
memcpy(ptr, middle, sizeof(middle)); ptr += sizeof(middle);
|
memcpy(ptr, middle, sizeof(middle)); ptr += sizeof(middle);
|
||||||
pubkeylen = CPubKey::PUBLIC_KEY_SIZE;
|
pubkeylen = CPubKey::SIZE;
|
||||||
secp256k1_ec_pubkey_serialize(ctx, ptr, &pubkeylen, &pubkey, SECP256K1_EC_UNCOMPRESSED);
|
secp256k1_ec_pubkey_serialize(ctx, ptr, &pubkeylen, &pubkey, SECP256K1_EC_UNCOMPRESSED);
|
||||||
ptr += pubkeylen;
|
ptr += pubkeylen;
|
||||||
*privkeylen = ptr - privkey;
|
*privkeylen = ptr - privkey;
|
||||||
assert(*privkeylen == CKey::PRIVATE_KEY_SIZE);
|
assert(*privkeylen == CKey::SIZE);
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -174,8 +174,8 @@ CPrivKey CKey::GetPrivKey() const {
|
|||||||
CPrivKey privkey;
|
CPrivKey privkey;
|
||||||
int ret;
|
int ret;
|
||||||
size_t privkeylen;
|
size_t privkeylen;
|
||||||
privkey.resize(PRIVATE_KEY_SIZE);
|
privkey.resize(SIZE);
|
||||||
privkeylen = PRIVATE_KEY_SIZE;
|
privkeylen = SIZE;
|
||||||
ret = ec_privkey_export_der(secp256k1_context_sign, privkey.data(), &privkeylen, begin(), fCompressed);
|
ret = ec_privkey_export_der(secp256k1_context_sign, privkey.data(), &privkeylen, begin(), fCompressed);
|
||||||
assert(ret);
|
assert(ret);
|
||||||
privkey.resize(privkeylen);
|
privkey.resize(privkeylen);
|
||||||
@ -185,7 +185,7 @@ CPrivKey CKey::GetPrivKey() const {
|
|||||||
CPubKey CKey::GetPubKey() const {
|
CPubKey CKey::GetPubKey() const {
|
||||||
assert(fValid);
|
assert(fValid);
|
||||||
secp256k1_pubkey pubkey;
|
secp256k1_pubkey pubkey;
|
||||||
size_t clen = CPubKey::PUBLIC_KEY_SIZE;
|
size_t clen = CPubKey::SIZE;
|
||||||
CPubKey result;
|
CPubKey result;
|
||||||
int ret = secp256k1_ec_pubkey_create(secp256k1_context_sign, &pubkey, begin());
|
int ret = secp256k1_ec_pubkey_create(secp256k1_context_sign, &pubkey, begin());
|
||||||
assert(ret);
|
assert(ret);
|
||||||
@ -277,7 +277,7 @@ bool CKey::Derive(CKey& keyChild, ChainCode &ccChild, unsigned int nChild, const
|
|||||||
std::vector<unsigned char, secure_allocator<unsigned char>> vout(64);
|
std::vector<unsigned char, secure_allocator<unsigned char>> vout(64);
|
||||||
if ((nChild >> 31) == 0) {
|
if ((nChild >> 31) == 0) {
|
||||||
CPubKey pubkey = GetPubKey();
|
CPubKey pubkey = GetPubKey();
|
||||||
assert(pubkey.size() == CPubKey::COMPRESSED_PUBLIC_KEY_SIZE);
|
assert(pubkey.size() == CPubKey::COMPRESSED_SIZE);
|
||||||
BIP32Hash(cc, nChild, *pubkey.begin(), pubkey.begin()+1, vout.data());
|
BIP32Hash(cc, nChild, *pubkey.begin(), pubkey.begin()+1, vout.data());
|
||||||
} else {
|
} else {
|
||||||
assert(size() == 32);
|
assert(size() == 32);
|
||||||
|
10
src/key.h
10
src/key.h
@ -19,7 +19,7 @@
|
|||||||
/**
|
/**
|
||||||
* secure_allocator is defined in allocators.h
|
* secure_allocator is defined in allocators.h
|
||||||
* CPrivKey is a serialized private key, with all parameters included
|
* CPrivKey is a serialized private key, with all parameters included
|
||||||
* (PRIVATE_KEY_SIZE bytes)
|
* (SIZE bytes)
|
||||||
*/
|
*/
|
||||||
typedef std::vector<unsigned char, secure_allocator<unsigned char> > CPrivKey;
|
typedef std::vector<unsigned char, secure_allocator<unsigned char> > CPrivKey;
|
||||||
|
|
||||||
@ -30,15 +30,15 @@ public:
|
|||||||
/**
|
/**
|
||||||
* secp256k1:
|
* secp256k1:
|
||||||
*/
|
*/
|
||||||
static const unsigned int PRIVATE_KEY_SIZE = 279;
|
static const unsigned int SIZE = 279;
|
||||||
static const unsigned int COMPRESSED_PRIVATE_KEY_SIZE = 214;
|
static const unsigned int COMPRESSED_SIZE = 214;
|
||||||
/**
|
/**
|
||||||
* see www.keylength.com
|
* see www.keylength.com
|
||||||
* script supports up to 75 for single byte push
|
* script supports up to 75 for single byte push
|
||||||
*/
|
*/
|
||||||
static_assert(
|
static_assert(
|
||||||
PRIVATE_KEY_SIZE >= COMPRESSED_PRIVATE_KEY_SIZE,
|
SIZE >= COMPRESSED_SIZE,
|
||||||
"COMPRESSED_PRIVATE_KEY_SIZE is larger than PRIVATE_KEY_SIZE");
|
"COMPRESSED_SIZE is larger than SIZE");
|
||||||
|
|
||||||
private:
|
private:
|
||||||
//! Whether this private key is valid. We check for correctness when modifying the key
|
//! Whether this private key is valid. We check for correctness when modifying the key
|
||||||
|
@ -130,7 +130,7 @@ struct PSBTInput
|
|||||||
case PSBT_IN_PARTIAL_SIG:
|
case PSBT_IN_PARTIAL_SIG:
|
||||||
{
|
{
|
||||||
// Make sure that the key is the size of pubkey + 1
|
// Make sure that the key is the size of pubkey + 1
|
||||||
if (key.size() != CPubKey::PUBLIC_KEY_SIZE + 1 && key.size() != CPubKey::COMPRESSED_PUBLIC_KEY_SIZE + 1) {
|
if (key.size() != CPubKey::SIZE + 1 && key.size() != CPubKey::COMPRESSED_SIZE + 1) {
|
||||||
throw std::ios_base::failure("Size of key was not the expected size for the type partial signature pubkey");
|
throw std::ios_base::failure("Size of key was not the expected size for the type partial signature pubkey");
|
||||||
}
|
}
|
||||||
// Read in the pubkey from key
|
// Read in the pubkey from key
|
||||||
|
@ -198,8 +198,8 @@ bool CPubKey::RecoverCompact(const uint256 &hash, const std::vector<unsigned cha
|
|||||||
if (!secp256k1_ecdsa_recover(secp256k1_context_verify, &pubkey, &sig, hash.begin())) {
|
if (!secp256k1_ecdsa_recover(secp256k1_context_verify, &pubkey, &sig, hash.begin())) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
unsigned char pub[PUBLIC_KEY_SIZE];
|
unsigned char pub[SIZE];
|
||||||
size_t publen = PUBLIC_KEY_SIZE;
|
size_t publen = SIZE;
|
||||||
secp256k1_ec_pubkey_serialize(secp256k1_context_verify, pub, &publen, &pubkey, fComp ? SECP256K1_EC_COMPRESSED : SECP256K1_EC_UNCOMPRESSED);
|
secp256k1_ec_pubkey_serialize(secp256k1_context_verify, pub, &publen, &pubkey, fComp ? SECP256K1_EC_COMPRESSED : SECP256K1_EC_UNCOMPRESSED);
|
||||||
Set(pub, pub + publen);
|
Set(pub, pub + publen);
|
||||||
return true;
|
return true;
|
||||||
@ -221,8 +221,8 @@ bool CPubKey::Decompress() {
|
|||||||
if (!secp256k1_ec_pubkey_parse(secp256k1_context_verify, &pubkey, vch, size())) {
|
if (!secp256k1_ec_pubkey_parse(secp256k1_context_verify, &pubkey, vch, size())) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
unsigned char pub[PUBLIC_KEY_SIZE];
|
unsigned char pub[SIZE];
|
||||||
size_t publen = PUBLIC_KEY_SIZE;
|
size_t publen = SIZE;
|
||||||
secp256k1_ec_pubkey_serialize(secp256k1_context_verify, pub, &publen, &pubkey, SECP256K1_EC_UNCOMPRESSED);
|
secp256k1_ec_pubkey_serialize(secp256k1_context_verify, pub, &publen, &pubkey, SECP256K1_EC_UNCOMPRESSED);
|
||||||
Set(pub, pub + publen);
|
Set(pub, pub + publen);
|
||||||
return true;
|
return true;
|
||||||
@ -231,7 +231,7 @@ bool CPubKey::Decompress() {
|
|||||||
bool CPubKey::Derive(CPubKey& pubkeyChild, ChainCode &ccChild, unsigned int nChild, const ChainCode& cc) const {
|
bool CPubKey::Derive(CPubKey& pubkeyChild, ChainCode &ccChild, unsigned int nChild, const ChainCode& cc) const {
|
||||||
assert(IsValid());
|
assert(IsValid());
|
||||||
assert((nChild >> 31) == 0);
|
assert((nChild >> 31) == 0);
|
||||||
assert(size() == COMPRESSED_PUBLIC_KEY_SIZE);
|
assert(size() == COMPRESSED_SIZE);
|
||||||
unsigned char out[64];
|
unsigned char out[64];
|
||||||
BIP32Hash(cc, nChild, *begin(), begin()+1, out);
|
BIP32Hash(cc, nChild, *begin(), begin()+1, out);
|
||||||
memcpy(ccChild.begin(), out+32, 32);
|
memcpy(ccChild.begin(), out+32, 32);
|
||||||
@ -243,8 +243,8 @@ bool CPubKey::Derive(CPubKey& pubkeyChild, ChainCode &ccChild, unsigned int nChi
|
|||||||
if (!secp256k1_ec_pubkey_tweak_add(secp256k1_context_verify, &pubkey, out)) {
|
if (!secp256k1_ec_pubkey_tweak_add(secp256k1_context_verify, &pubkey, out)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
unsigned char pub[COMPRESSED_PUBLIC_KEY_SIZE];
|
unsigned char pub[COMPRESSED_SIZE];
|
||||||
size_t publen = COMPRESSED_PUBLIC_KEY_SIZE;
|
size_t publen = COMPRESSED_SIZE;
|
||||||
secp256k1_ec_pubkey_serialize(secp256k1_context_verify, pub, &publen, &pubkey, SECP256K1_EC_COMPRESSED);
|
secp256k1_ec_pubkey_serialize(secp256k1_context_verify, pub, &publen, &pubkey, SECP256K1_EC_COMPRESSED);
|
||||||
pubkeyChild.Set(pub, pub + publen);
|
pubkeyChild.Set(pub, pub + publen);
|
||||||
return true;
|
return true;
|
||||||
@ -256,8 +256,8 @@ void CExtPubKey::Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const {
|
|||||||
code[5] = (nChild >> 24) & 0xFF; code[6] = (nChild >> 16) & 0xFF;
|
code[5] = (nChild >> 24) & 0xFF; code[6] = (nChild >> 16) & 0xFF;
|
||||||
code[7] = (nChild >> 8) & 0xFF; code[8] = (nChild >> 0) & 0xFF;
|
code[7] = (nChild >> 8) & 0xFF; code[8] = (nChild >> 0) & 0xFF;
|
||||||
memcpy(code+9, chaincode.begin(), 32);
|
memcpy(code+9, chaincode.begin(), 32);
|
||||||
assert(pubkey.size() == CPubKey::COMPRESSED_PUBLIC_KEY_SIZE);
|
assert(pubkey.size() == CPubKey::COMPRESSED_SIZE);
|
||||||
memcpy(code+41, pubkey.begin(), CPubKey::COMPRESSED_PUBLIC_KEY_SIZE);
|
memcpy(code+41, pubkey.begin(), CPubKey::COMPRESSED_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CExtPubKey::Decode(const unsigned char code[BIP32_EXTKEY_SIZE]) {
|
void CExtPubKey::Decode(const unsigned char code[BIP32_EXTKEY_SIZE]) {
|
||||||
|
22
src/pubkey.h
22
src/pubkey.h
@ -33,17 +33,17 @@ public:
|
|||||||
/**
|
/**
|
||||||
* secp256k1:
|
* secp256k1:
|
||||||
*/
|
*/
|
||||||
static constexpr unsigned int PUBLIC_KEY_SIZE = 65;
|
static constexpr unsigned int SIZE = 65;
|
||||||
static constexpr unsigned int COMPRESSED_PUBLIC_KEY_SIZE = 33;
|
static constexpr unsigned int COMPRESSED_SIZE = 33;
|
||||||
static constexpr unsigned int SIGNATURE_SIZE = 72;
|
static constexpr unsigned int SIGNATURE_SIZE = 72;
|
||||||
static constexpr unsigned int COMPACT_SIGNATURE_SIZE = 65;
|
static constexpr unsigned int COMPACT_SIGNATURE_SIZE = 65;
|
||||||
/**
|
/**
|
||||||
* see www.keylength.com
|
* see www.keylength.com
|
||||||
* script supports up to 75 for single byte push
|
* script supports up to 75 for single byte push
|
||||||
*/
|
*/
|
||||||
static_assert(
|
static_assert(
|
||||||
PUBLIC_KEY_SIZE >= COMPRESSED_PUBLIC_KEY_SIZE,
|
SIZE >= COMPRESSED_SIZE,
|
||||||
"COMPRESSED_PUBLIC_KEY_SIZE is larger than PUBLIC_KEY_SIZE");
|
"COMPRESSED_SIZE is larger than SIZE");
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
@ -51,15 +51,15 @@ private:
|
|||||||
* Just store the serialized data.
|
* Just store the serialized data.
|
||||||
* Its length can very cheaply be computed from the first byte.
|
* Its length can very cheaply be computed from the first byte.
|
||||||
*/
|
*/
|
||||||
unsigned char vch[PUBLIC_KEY_SIZE];
|
unsigned char vch[SIZE];
|
||||||
|
|
||||||
//! Compute the length of a pubkey with a given first byte.
|
//! Compute the length of a pubkey with a given first byte.
|
||||||
unsigned int static GetLen(unsigned char chHeader)
|
unsigned int static GetLen(unsigned char chHeader)
|
||||||
{
|
{
|
||||||
if (chHeader == 2 || chHeader == 3)
|
if (chHeader == 2 || chHeader == 3)
|
||||||
return COMPRESSED_PUBLIC_KEY_SIZE;
|
return COMPRESSED_SIZE;
|
||||||
if (chHeader == 4 || chHeader == 6 || chHeader == 7)
|
if (chHeader == 4 || chHeader == 6 || chHeader == 7)
|
||||||
return PUBLIC_KEY_SIZE;
|
return SIZE;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ public:
|
|||||||
void Unserialize(Stream& s)
|
void Unserialize(Stream& s)
|
||||||
{
|
{
|
||||||
unsigned int len = ::ReadCompactSize(s);
|
unsigned int len = ::ReadCompactSize(s);
|
||||||
if (len <= PUBLIC_KEY_SIZE) {
|
if (len <= SIZE) {
|
||||||
s.read((char*)vch, len);
|
s.read((char*)vch, len);
|
||||||
} else {
|
} else {
|
||||||
// invalid pubkey, skip available data
|
// invalid pubkey, skip available data
|
||||||
@ -179,7 +179,7 @@ public:
|
|||||||
//! Check whether this is a compressed public key.
|
//! Check whether this is a compressed public key.
|
||||||
bool IsCompressed() const
|
bool IsCompressed() const
|
||||||
{
|
{
|
||||||
return size() == COMPRESSED_PUBLIC_KEY_SIZE;
|
return size() == COMPRESSED_SIZE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -61,17 +61,17 @@ static inline void popstack(std::vector<valtype>& stack)
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool static IsCompressedOrUncompressedPubKey(const valtype &vchPubKey) {
|
bool static IsCompressedOrUncompressedPubKey(const valtype &vchPubKey) {
|
||||||
if (vchPubKey.size() < CPubKey::COMPRESSED_PUBLIC_KEY_SIZE) {
|
if (vchPubKey.size() < CPubKey::COMPRESSED_SIZE) {
|
||||||
// Non-canonical public key: too short
|
// Non-canonical public key: too short
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (vchPubKey[0] == 0x04) {
|
if (vchPubKey[0] == 0x04) {
|
||||||
if (vchPubKey.size() != CPubKey::PUBLIC_KEY_SIZE) {
|
if (vchPubKey.size() != CPubKey::SIZE) {
|
||||||
// Non-canonical public key: invalid length for uncompressed key
|
// Non-canonical public key: invalid length for uncompressed key
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else if (vchPubKey[0] == 0x02 || vchPubKey[0] == 0x03) {
|
} else if (vchPubKey[0] == 0x02 || vchPubKey[0] == 0x03) {
|
||||||
if (vchPubKey.size() != CPubKey::COMPRESSED_PUBLIC_KEY_SIZE) {
|
if (vchPubKey.size() != CPubKey::COMPRESSED_SIZE) {
|
||||||
// Non-canonical public key: invalid length for compressed key
|
// Non-canonical public key: invalid length for compressed key
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -83,7 +83,7 @@ bool static IsCompressedOrUncompressedPubKey(const valtype &vchPubKey) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool static IsCompressedPubKey(const valtype &vchPubKey) {
|
bool static IsCompressedPubKey(const valtype &vchPubKey) {
|
||||||
if (vchPubKey.size() != CPubKey::COMPRESSED_PUBLIC_KEY_SIZE) {
|
if (vchPubKey.size() != CPubKey::COMPRESSED_SIZE) {
|
||||||
// Non-canonical public key: invalid length for compressed key
|
// Non-canonical public key: invalid length for compressed key
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -145,7 +145,7 @@ template<typename Stream>
|
|||||||
void DeserializeHDKeypaths(Stream& s, const std::vector<unsigned char>& key, std::map<CPubKey, KeyOriginInfo>& hd_keypaths)
|
void DeserializeHDKeypaths(Stream& s, const std::vector<unsigned char>& key, std::map<CPubKey, KeyOriginInfo>& hd_keypaths)
|
||||||
{
|
{
|
||||||
// Make sure that the key is the size of pubkey + 1
|
// Make sure that the key is the size of pubkey + 1
|
||||||
if (key.size() != CPubKey::PUBLIC_KEY_SIZE + 1 && key.size() != CPubKey::COMPRESSED_PUBLIC_KEY_SIZE + 1) {
|
if (key.size() != CPubKey::SIZE + 1 && key.size() != CPubKey::COMPRESSED_SIZE + 1) {
|
||||||
throw std::ios_base::failure("Size of key was not the expected size for the type BIP32 keypath");
|
throw std::ios_base::failure("Size of key was not the expected size for the type BIP32 keypath");
|
||||||
}
|
}
|
||||||
// Read in the pubkey from key
|
// Read in the pubkey from key
|
||||||
|
@ -34,12 +34,12 @@ const char* GetTxnOutputType(txnouttype t)
|
|||||||
|
|
||||||
static bool MatchPayToPubkey(const CScript& script, valtype& pubkey)
|
static bool MatchPayToPubkey(const CScript& script, valtype& pubkey)
|
||||||
{
|
{
|
||||||
if (script.size() == CPubKey::PUBLIC_KEY_SIZE + 2 && script[0] == CPubKey::PUBLIC_KEY_SIZE && script.back() == OP_CHECKSIG) {
|
if (script.size() == CPubKey::SIZE + 2 && script[0] == CPubKey::SIZE && script.back() == OP_CHECKSIG) {
|
||||||
pubkey = valtype(script.begin() + 1, script.begin() + CPubKey::PUBLIC_KEY_SIZE + 1);
|
pubkey = valtype(script.begin() + 1, script.begin() + CPubKey::SIZE + 1);
|
||||||
return CPubKey::ValidSize(pubkey);
|
return CPubKey::ValidSize(pubkey);
|
||||||
}
|
}
|
||||||
if (script.size() == CPubKey::COMPRESSED_PUBLIC_KEY_SIZE + 2 && script[0] == CPubKey::COMPRESSED_PUBLIC_KEY_SIZE && script.back() == OP_CHECKSIG) {
|
if (script.size() == CPubKey::COMPRESSED_SIZE + 2 && script[0] == CPubKey::COMPRESSED_SIZE && script.back() == OP_CHECKSIG) {
|
||||||
pubkey = valtype(script.begin() + 1, script.begin() + CPubKey::COMPRESSED_PUBLIC_KEY_SIZE + 1);
|
pubkey = valtype(script.begin() + 1, script.begin() + CPubKey::COMPRESSED_SIZE + 1);
|
||||||
return CPubKey::ValidSize(pubkey);
|
return CPubKey::ValidSize(pubkey);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user