diff options
| author | Jonas Schnelli <[email protected]> | 2015-06-01 16:35:19 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-04-14 20:56:33 +0200 |
| commit | 90604f16af63ec066d6561337f476ccd8acec326 (patch) | |
| tree | 5cca6f0af2f22330bbf7d7a913b3e10cbcafe868 /src/key.cpp | |
| parent | Merge #7874: Improve AlreadyHave (diff) | |
| download | discoin-90604f16af63ec066d6561337f476ccd8acec326.tar.xz discoin-90604f16af63ec066d6561337f476ccd8acec326.zip | |
add bip32 pubkey serialization
CExtPubKey should be serializable like CPubKey
Diffstat (limited to 'src/key.cpp')
| -rw-r--r-- | src/key.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/key.cpp b/src/key.cpp index 28ba5144e..6a3d9aa14 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -275,7 +275,7 @@ CExtPubKey CExtKey::Neuter() const { return ret; } -void CExtKey::Encode(unsigned char code[74]) const { +void CExtKey::Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const { code[0] = nDepth; memcpy(code+1, vchFingerprint, 4); code[5] = (nChild >> 24) & 0xFF; code[6] = (nChild >> 16) & 0xFF; @@ -286,12 +286,12 @@ void CExtKey::Encode(unsigned char code[74]) const { memcpy(code+42, key.begin(), 32); } -void CExtKey::Decode(const unsigned char code[74]) { +void CExtKey::Decode(const unsigned char code[BIP32_EXTKEY_SIZE]) { nDepth = code[0]; memcpy(vchFingerprint, code+1, 4); nChild = (code[5] << 24) | (code[6] << 16) | (code[7] << 8) | code[8]; memcpy(chaincode.begin(), code+9, 32); - key.Set(code+42, code+74, true); + key.Set(code+42, code+BIP32_EXTKEY_SIZE, true); } bool ECC_InitSanityCheck() { |