LCOV - code coverage report
Current view: top level - src - pubkey.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 98.6 % 218 215
Test Date: 2025-08-27 16:35:37 Functions: 100.0 % 22 22
Branches: 84.7 % 150 127

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2009-present The Bitcoin Core developers
       2                 :             : // Copyright (c) 2017 The Zcash developers
       3                 :             : // Distributed under the MIT software license, see the accompanying
       4                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       5                 :             : 
       6                 :             : #include <pubkey.h>
       7                 :             : 
       8                 :             : #include <hash.h>
       9                 :             : #include <secp256k1.h>
      10                 :             : #include <secp256k1_ellswift.h>
      11                 :             : #include <secp256k1_extrakeys.h>
      12                 :             : #include <secp256k1_recovery.h>
      13                 :             : #include <secp256k1_schnorrsig.h>
      14                 :             : #include <span.h>
      15                 :             : #include <uint256.h>
      16                 :             : #include <util/strencodings.h>
      17                 :             : 
      18                 :             : #include <algorithm>
      19                 :             : #include <cassert>
      20                 :             : 
      21                 :             : using namespace util::hex_literals;
      22                 :             : 
      23                 :             : namespace {
      24                 :             : 
      25                 :             : struct Secp256k1SelfTester
      26                 :             : {
      27                 :             :     Secp256k1SelfTester() {
      28                 :             :         /* Run libsecp256k1 self-test before using the secp256k1_context_static. */
      29                 :             :         secp256k1_selftest();
      30                 :             :     }
      31                 :             : } SECP256K1_SELFTESTER;
      32                 :             : 
      33                 :             : } // namespace
      34                 :             : 
      35                 :             : /** This function is taken from the libsecp256k1 distribution and implements
      36                 :             :  *  DER parsing for ECDSA signatures, while supporting an arbitrary subset of
      37                 :             :  *  format violations.
      38                 :             :  *
      39                 :             :  *  Supported violations include negative integers, excessive padding, garbage
      40                 :             :  *  at the end, and overly long length descriptors. This is safe to use in
      41                 :             :  *  Bitcoin because since the activation of BIP66, signatures are verified to be
      42                 :             :  *  strict DER before being passed to this module, and we know it supports all
      43                 :             :  *  violations present in the blockchain before that point.
      44                 :             :  */
      45                 :      357297 : int ecdsa_signature_parse_der_lax(secp256k1_ecdsa_signature* sig, const unsigned char *input, size_t inputlen) {
      46                 :      357297 :     size_t rpos, rlen, spos, slen;
      47                 :      357297 :     size_t pos = 0;
      48                 :      357297 :     size_t lenbyte;
      49                 :      357297 :     unsigned char tmpsig[64] = {0};
      50                 :      357297 :     int overflow = 0;
      51                 :             : 
      52                 :             :     /* Hack to initialize sig with a correctly-parsed but invalid signature. */
      53                 :      357297 :     secp256k1_ecdsa_signature_parse_compact(secp256k1_context_static, sig, tmpsig);
      54                 :             : 
      55                 :             :     /* Sequence tag byte */
      56   [ +  +  +  + ]:      357297 :     if (pos == inputlen || input[pos] != 0x30) {
      57                 :             :         return 0;
      58                 :             :     }
      59                 :      352330 :     pos++;
      60                 :             : 
      61                 :             :     /* Sequence length bytes */
      62         [ +  + ]:      352330 :     if (pos == inputlen) {
      63                 :             :         return 0;
      64                 :             :     }
      65                 :      352243 :     lenbyte = input[pos++];
      66         [ +  + ]:      352243 :     if (lenbyte & 0x80) {
      67                 :        1646 :         lenbyte -= 0x80;
      68         [ +  + ]:        1646 :         if (lenbyte > inputlen - pos) {
      69                 :             :             return 0;
      70                 :             :         }
      71                 :        1091 :         pos += lenbyte;
      72                 :             :     }
      73                 :             : 
      74                 :             :     /* Integer tag byte for R */
      75   [ +  +  +  + ]:      351688 :     if (pos == inputlen || input[pos] != 0x02) {
      76                 :             :         return 0;
      77                 :             :     }
      78                 :      350322 :     pos++;
      79                 :             : 
      80                 :             :     /* Integer length for R */
      81         [ +  + ]:      350322 :     if (pos == inputlen) {
      82                 :             :         return 0;
      83                 :             :     }
      84                 :      350242 :     lenbyte = input[pos++];
      85         [ +  + ]:      350242 :     if (lenbyte & 0x80) {
      86                 :        2973 :         lenbyte -= 0x80;
      87         [ +  + ]:        2973 :         if (lenbyte > inputlen - pos) {
      88                 :             :             return 0;
      89                 :             :         }
      90   [ +  +  +  + ]:        3324 :         while (lenbyte > 0 && input[pos] == 0) {
      91                 :        1794 :             pos++;
      92                 :        1794 :             lenbyte--;
      93                 :             :         }
      94                 :        1530 :         static_assert(sizeof(size_t) >= 4, "size_t too small");
      95         [ +  + ]:        1530 :         if (lenbyte >= 4) {
      96                 :             :             return 0;
      97                 :             :         }
      98                 :             :         rlen = 0;
      99         [ +  + ]:        3435 :         while (lenbyte > 0) {
     100                 :        2176 :             rlen = (rlen << 8) + input[pos];
     101                 :        2176 :             pos++;
     102                 :        2176 :             lenbyte--;
     103                 :             :         }
     104                 :             :     } else {
     105                 :             :         rlen = lenbyte;
     106                 :             :     }
     107         [ +  + ]:      348528 :     if (rlen > inputlen - pos) {
     108                 :             :         return 0;
     109                 :             :     }
     110                 :      347774 :     rpos = pos;
     111                 :      347774 :     pos += rlen;
     112                 :             : 
     113                 :             :     /* Integer tag byte for S */
     114   [ +  +  +  + ]:      347774 :     if (pos == inputlen || input[pos] != 0x02) {
     115                 :             :         return 0;
     116                 :             :     }
     117                 :      346217 :     pos++;
     118                 :             : 
     119                 :             :     /* Integer length for S */
     120         [ +  + ]:      346217 :     if (pos == inputlen) {
     121                 :             :         return 0;
     122                 :             :     }
     123                 :      346120 :     lenbyte = input[pos++];
     124         [ +  + ]:      346120 :     if (lenbyte & 0x80) {
     125                 :        1234 :         lenbyte -= 0x80;
     126         [ +  + ]:        1234 :         if (lenbyte > inputlen - pos) {
     127                 :             :             return 0;
     128                 :             :         }
     129   [ +  +  +  + ]:        2352 :         while (lenbyte > 0 && input[pos] == 0) {
     130                 :        1716 :             pos++;
     131                 :        1716 :             lenbyte--;
     132                 :             :         }
     133                 :         636 :         static_assert(sizeof(size_t) >= 4, "size_t too small");
     134         [ +  + ]:         636 :         if (lenbyte >= 4) {
     135                 :             :             return 0;
     136                 :             :         }
     137                 :             :         slen = 0;
     138         [ +  + ]:        1311 :         while (lenbyte > 0) {
     139                 :         810 :             slen = (slen << 8) + input[pos];
     140                 :         810 :             pos++;
     141                 :         810 :             lenbyte--;
     142                 :             :         }
     143                 :             :     } else {
     144                 :             :         slen = lenbyte;
     145                 :             :     }
     146         [ +  + ]:      345387 :     if (slen > inputlen - pos) {
     147                 :             :         return 0;
     148                 :             :     }
     149                 :      386753 :     spos = pos;
     150                 :             : 
     151                 :             :     /* Ignore leading zeroes in R */
     152   [ +  +  +  + ]:      386753 :     while (rlen > 0 && input[rpos] == 0) {
     153                 :       44199 :         rlen--;
     154                 :       44199 :         rpos++;
     155                 :             :     }
     156                 :             :     /* Copy R value */
     157         [ +  + ]:      342554 :     if (rlen > 32) {
     158                 :      342554 :         overflow = 1;
     159                 :             :     } else {
     160                 :      340587 :         memcpy(tmpsig + 32 - rlen, input + rpos, rlen);
     161                 :             :     }
     162                 :             : 
     163                 :             :     /* Ignore leading zeroes in S */
     164   [ +  +  +  + ]:      371210 :     while (slen > 0 && input[spos] == 0) {
     165                 :       28656 :         slen--;
     166                 :       28656 :         spos++;
     167                 :             :     }
     168                 :             :     /* Copy S value */
     169         [ +  + ]:      342554 :     if (slen > 32) {
     170                 :             :         overflow = 1;
     171                 :             :     } else {
     172         [ +  + ]:      340401 :         memcpy(tmpsig + 64 - slen, input + spos, slen);
     173                 :             :     }
     174                 :             : 
     175         [ +  + ]:      340401 :     if (!overflow) {
     176                 :      338477 :         overflow = !secp256k1_ecdsa_signature_parse_compact(secp256k1_context_static, sig, tmpsig);
     177                 :             :     }
     178         [ +  + ]:      340630 :     if (overflow) {
     179                 :             :         /* Overwrite the result again with a correctly-parsed but invalid
     180                 :             :            signature if parsing failed. */
     181                 :        5491 :         memset(tmpsig, 0, 64);
     182                 :        5491 :         secp256k1_ecdsa_signature_parse_compact(secp256k1_context_static, sig, tmpsig);
     183                 :             :     }
     184                 :             :     return 1;
     185                 :             : }
     186                 :             : 
     187                 :             : /** Nothing Up My Sleeve (NUMS) point
     188                 :             :  *
     189                 :             :  *  NUMS_H is a point with an unknown discrete logarithm, constructed by taking the sha256 of 'g'
     190                 :             :  *  (uncompressed encoding), which happens to be a point on the curve.
     191                 :             :  *
     192                 :             :  *  For an example script for calculating H, refer to the unit tests in
     193                 :             :  *  ./test/functional/test_framework/crypto/secp256k1.py
     194                 :             :  */
     195                 :             : constexpr XOnlyPubKey XOnlyPubKey::NUMS_H{
     196                 :             :     // Use immediate lambda to work around GCC-14 bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117966
     197                 :             :     []() consteval { return XOnlyPubKey{"50929b74c1a04954b78b4b6035e97a5e078a5a0f28ec96d547bfee9ace803ac0"_hex_u8}; }(),
     198                 :             : };
     199                 :             : 
     200                 :      624968 : std::vector<CPubKey> XOnlyPubKey::GetCPubKeys() const
     201                 :             : {
     202                 :      624968 :     std::vector<CPubKey> out;
     203                 :      624968 :     unsigned char b[33] = {0x02};
     204                 :      624968 :     std::copy(m_keydata.begin(), m_keydata.end(), b + 1);
     205                 :      624968 :     CPubKey fullpubkey;
     206                 :      624968 :     fullpubkey.Set(b, b + 33);
     207         [ +  - ]:      624968 :     out.push_back(fullpubkey);
     208                 :      624968 :     b[0] = 0x03;
     209                 :      624968 :     fullpubkey.Set(b, b + 33);
     210         [ +  - ]:      624968 :     out.push_back(fullpubkey);
     211                 :      624968 :     return out;
     212                 :           0 : }
     213                 :             : 
     214                 :      624968 : std::vector<CKeyID> XOnlyPubKey::GetKeyIDs() const
     215                 :             : {
     216                 :      624968 :     std::vector<CKeyID> out;
     217   [ +  -  +  + ]:     1874904 :     for (const CPubKey& pk : GetCPubKeys()) {
     218         [ +  - ]:     2499872 :         out.push_back(pk.GetID());
     219                 :           0 :     }
     220                 :      624968 :     return out;
     221                 :           0 : }
     222                 :             : 
     223                 :      487233 : CPubKey XOnlyPubKey::GetEvenCorrespondingCPubKey() const
     224                 :             : {
     225                 :      487233 :     unsigned char full_key[CPubKey::COMPRESSED_SIZE] = {0x02};
     226                 :      487233 :     std::copy(begin(), end(), full_key + 1);
     227                 :      487233 :     return CPubKey{full_key};
     228                 :             : }
     229                 :             : 
     230                 :      217265 : bool XOnlyPubKey::IsFullyValid() const
     231                 :             : {
     232                 :      217265 :     secp256k1_xonly_pubkey pubkey;
     233                 :      217265 :     return secp256k1_xonly_pubkey_parse(secp256k1_context_static, &pubkey, m_keydata.data());
     234                 :             : }
     235                 :             : 
     236                 :        3620 : bool XOnlyPubKey::VerifySchnorr(const uint256& msg, std::span<const unsigned char> sigbytes) const
     237                 :             : {
     238         [ -  + ]:        3620 :     assert(sigbytes.size() == 64);
     239                 :        3620 :     secp256k1_xonly_pubkey pubkey;
     240         [ +  + ]:        3620 :     if (!secp256k1_xonly_pubkey_parse(secp256k1_context_static, &pubkey, m_keydata.data())) return false;
     241                 :        3477 :     return secp256k1_schnorrsig_verify(secp256k1_context_static, sigbytes.data(), msg.begin(), 32, &pubkey);
     242                 :             : }
     243                 :             : 
     244                 :             : static const HashWriter HASHER_TAPTWEAK{TaggedHash("TapTweak")};
     245                 :             : 
     246                 :      197348 : uint256 XOnlyPubKey::ComputeTapTweakHash(const uint256* merkle_root) const
     247                 :             : {
     248         [ +  + ]:      197348 :     if (merkle_root == nullptr) {
     249                 :             :         // We have no scripts. The actual tweak does not matter, but follow BIP341 here to
     250                 :             :         // allow for reproducible tweaking.
     251                 :      149058 :         return (HashWriter{HASHER_TAPTWEAK} << m_keydata).GetSHA256();
     252                 :             :     } else {
     253                 :       48290 :         return (HashWriter{HASHER_TAPTWEAK} << m_keydata << *merkle_root).GetSHA256();
     254                 :             :     }
     255                 :             : }
     256                 :             : 
     257                 :        5225 : bool XOnlyPubKey::CheckTapTweak(const XOnlyPubKey& internal, const uint256& merkle_root, bool parity) const
     258                 :             : {
     259                 :        5225 :     secp256k1_xonly_pubkey internal_key;
     260         [ +  + ]:        5225 :     if (!secp256k1_xonly_pubkey_parse(secp256k1_context_static, &internal_key, internal.data())) return false;
     261                 :        3400 :     uint256 tweak = internal.ComputeTapTweakHash(&merkle_root);
     262                 :        3400 :     return secp256k1_xonly_pubkey_tweak_add_check(secp256k1_context_static, m_keydata.begin(), parity, &internal_key, tweak.begin());
     263                 :             : }
     264                 :             : 
     265                 :      193948 : std::optional<std::pair<XOnlyPubKey, bool>> XOnlyPubKey::CreateTapTweak(const uint256* merkle_root) const
     266                 :             : {
     267                 :      193948 :     secp256k1_xonly_pubkey base_point;
     268         [ -  + ]:      193948 :     if (!secp256k1_xonly_pubkey_parse(secp256k1_context_static, &base_point, data())) return std::nullopt;
     269                 :      193948 :     secp256k1_pubkey out;
     270                 :      193948 :     uint256 tweak = ComputeTapTweakHash(merkle_root);
     271         [ -  + ]:      193948 :     if (!secp256k1_xonly_pubkey_tweak_add(secp256k1_context_static, &out, &base_point, tweak.data())) return std::nullopt;
     272                 :      193948 :     int parity = -1;
     273                 :      193948 :     std::pair<XOnlyPubKey, bool> ret;
     274                 :      193948 :     secp256k1_xonly_pubkey out_xonly;
     275         [ -  + ]:      193948 :     if (!secp256k1_xonly_pubkey_from_pubkey(secp256k1_context_static, &out_xonly, &parity, &out)) return std::nullopt;
     276                 :      193948 :     secp256k1_xonly_pubkey_serialize(secp256k1_context_static, ret.first.begin(), &out_xonly);
     277         [ -  + ]:      193948 :     assert(parity == 0 || parity == 1);
     278                 :      193948 :     ret.second = parity;
     279                 :      193948 :     return ret;
     280                 :             : }
     281                 :             : 
     282                 :             : 
     283                 :      187632 : bool CPubKey::Verify(const uint256 &hash, const std::vector<unsigned char>& vchSig) const {
     284         [ +  + ]:      187632 :     if (!IsValid())
     285                 :             :         return false;
     286                 :      186125 :     secp256k1_pubkey pubkey;
     287                 :      186125 :     secp256k1_ecdsa_signature sig;
     288         [ +  + ]:      186125 :     if (!secp256k1_ec_pubkey_parse(secp256k1_context_static, &pubkey, vch, size())) {
     289                 :             :         return false;
     290                 :             :     }
     291   [ -  +  +  + ]:      180821 :     if (!ecdsa_signature_parse_der_lax(&sig, vchSig.data(), vchSig.size())) {
     292                 :             :         return false;
     293                 :             :     }
     294                 :             :     /* libsecp256k1's ECDSA verification requires lower-S signatures, which have
     295                 :             :      * not historically been enforced in Bitcoin, so normalize them first. */
     296                 :      167338 :     secp256k1_ecdsa_signature_normalize(secp256k1_context_static, &sig, &sig);
     297                 :      167338 :     return secp256k1_ecdsa_verify(secp256k1_context_static, &sig, hash.begin(), &pubkey);
     298                 :             : }
     299                 :             : 
     300                 :        3745 : bool CPubKey::RecoverCompact(const uint256 &hash, const std::vector<unsigned char>& vchSig) {
     301   [ -  +  +  + ]:        3745 :     if (vchSig.size() != COMPACT_SIGNATURE_SIZE)
     302                 :             :         return false;
     303                 :        3742 :     int recid = (vchSig[0] - 27) & 3;
     304                 :        3742 :     bool fComp = ((vchSig[0] - 27) & 4) != 0;
     305                 :        3742 :     secp256k1_pubkey pubkey;
     306                 :        3742 :     secp256k1_ecdsa_recoverable_signature sig;
     307         [ +  + ]:        3742 :     if (!secp256k1_ecdsa_recoverable_signature_parse_compact(secp256k1_context_static, &sig, &vchSig[1], recid)) {
     308                 :             :         return false;
     309                 :             :     }
     310         [ +  + ]:        3741 :     if (!secp256k1_ecdsa_recover(secp256k1_context_static, &pubkey, &sig, hash.begin())) {
     311                 :             :         return false;
     312                 :             :     }
     313                 :        3725 :     unsigned char pub[SIZE];
     314                 :        3725 :     size_t publen = SIZE;
     315         [ +  + ]:        5633 :     secp256k1_ec_pubkey_serialize(secp256k1_context_static, pub, &publen, &pubkey, fComp ? SECP256K1_EC_COMPRESSED : SECP256K1_EC_UNCOMPRESSED);
     316                 :        3725 :     Set(pub, pub + publen);
     317                 :        3725 :     return true;
     318                 :             : }
     319                 :             : 
     320                 :      392865 : bool CPubKey::IsFullyValid() const {
     321         [ +  + ]:      392865 :     if (!IsValid())
     322                 :             :         return false;
     323                 :      281002 :     secp256k1_pubkey pubkey;
     324                 :      281002 :     return secp256k1_ec_pubkey_parse(secp256k1_context_static, &pubkey, vch, size());
     325                 :             : }
     326                 :             : 
     327                 :      112171 : bool CPubKey::Decompress() {
     328         [ +  - ]:      112171 :     if (!IsValid())
     329                 :             :         return false;
     330                 :      112171 :     secp256k1_pubkey pubkey;
     331         [ +  + ]:      112171 :     if (!secp256k1_ec_pubkey_parse(secp256k1_context_static, &pubkey, vch, size())) {
     332                 :             :         return false;
     333                 :             :     }
     334                 :       53841 :     unsigned char pub[SIZE];
     335                 :       53841 :     size_t publen = SIZE;
     336                 :       53841 :     secp256k1_ec_pubkey_serialize(secp256k1_context_static, pub, &publen, &pubkey, SECP256K1_EC_UNCOMPRESSED);
     337                 :       53841 :     Set(pub, pub + publen);
     338                 :       53841 :     return true;
     339                 :             : }
     340                 :             : 
     341                 :     1006396 : bool CPubKey::Derive(CPubKey& pubkeyChild, ChainCode &ccChild, unsigned int nChild, const ChainCode& cc) const {
     342         [ -  + ]:     1006396 :     assert(IsValid());
     343         [ -  + ]:     1006396 :     assert((nChild >> 31) == 0);
     344         [ -  + ]:     1006396 :     assert(size() == COMPRESSED_SIZE);
     345                 :     1006396 :     unsigned char out[64];
     346                 :     1006396 :     BIP32Hash(cc, nChild, *begin(), begin()+1, out);
     347                 :     1006396 :     memcpy(ccChild.begin(), out+32, 32);
     348                 :     1006396 :     secp256k1_pubkey pubkey;
     349         [ +  - ]:     1006396 :     if (!secp256k1_ec_pubkey_parse(secp256k1_context_static, &pubkey, vch, size())) {
     350                 :             :         return false;
     351                 :             :     }
     352         [ +  - ]:     1006396 :     if (!secp256k1_ec_pubkey_tweak_add(secp256k1_context_static, &pubkey, out)) {
     353                 :             :         return false;
     354                 :             :     }
     355                 :     1006396 :     unsigned char pub[COMPRESSED_SIZE];
     356                 :     1006396 :     size_t publen = COMPRESSED_SIZE;
     357                 :     1006396 :     secp256k1_ec_pubkey_serialize(secp256k1_context_static, pub, &publen, &pubkey, SECP256K1_EC_COMPRESSED);
     358                 :     1006396 :     pubkeyChild.Set(pub, pub + publen);
     359                 :     1006396 :     return true;
     360                 :             : }
     361                 :             : 
     362                 :       16453 : EllSwiftPubKey::EllSwiftPubKey(std::span<const std::byte> ellswift) noexcept
     363                 :             : {
     364         [ -  + ]:       16453 :     assert(ellswift.size() == SIZE);
     365                 :       16453 :     std::copy(ellswift.begin(), ellswift.end(), m_pubkey.begin());
     366                 :       16453 : }
     367                 :             : 
     368                 :        1811 : CPubKey EllSwiftPubKey::Decode() const
     369                 :             : {
     370                 :        1811 :     secp256k1_pubkey pubkey;
     371                 :        1811 :     secp256k1_ellswift_decode(secp256k1_context_static, &pubkey, UCharCast(m_pubkey.data()));
     372                 :             : 
     373                 :        1811 :     size_t sz = CPubKey::COMPRESSED_SIZE;
     374                 :        1811 :     std::array<uint8_t, CPubKey::COMPRESSED_SIZE> vch_bytes;
     375                 :             : 
     376                 :        1811 :     secp256k1_ec_pubkey_serialize(secp256k1_context_static, vch_bytes.data(), &sz, &pubkey, SECP256K1_EC_COMPRESSED);
     377         [ -  + ]:        1811 :     assert(sz == vch_bytes.size());
     378                 :             : 
     379                 :        1811 :     return CPubKey{vch_bytes.begin(), vch_bytes.end()};
     380                 :             : }
     381                 :             : 
     382                 :     1998203 : void CExtPubKey::Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const {
     383                 :     1998203 :     code[0] = nDepth;
     384                 :     1998203 :     memcpy(code+1, vchFingerprint, 4);
     385                 :     1998203 :     WriteBE32(code+5, nChild);
     386         [ -  + ]:     1998203 :     memcpy(code+9, chaincode.begin(), 32);
     387         [ -  + ]:     1998203 :     assert(pubkey.size() == CPubKey::COMPRESSED_SIZE);
     388                 :     1998203 :     memcpy(code+41, pubkey.begin(), CPubKey::COMPRESSED_SIZE);
     389                 :     1998203 : }
     390                 :             : 
     391                 :      146388 : void CExtPubKey::Decode(const unsigned char code[BIP32_EXTKEY_SIZE]) {
     392                 :      146388 :     nDepth = code[0];
     393                 :      146388 :     memcpy(vchFingerprint, code+1, 4);
     394                 :      146388 :     nChild = ReadBE32(code+5);
     395                 :      146388 :     memcpy(chaincode.begin(), code+9, 32);
     396                 :      146388 :     pubkey.Set(code+41, code+BIP32_EXTKEY_SIZE);
     397   [ +  +  +  +  :      146388 :     if ((nDepth == 0 && (nChild != 0 || ReadLE32(vchFingerprint) != 0)) || !pubkey.IsFullyValid()) pubkey = CPubKey();
             +  +  +  + ]
     398                 :      146388 : }
     399                 :             : 
     400                 :       18515 : void CExtPubKey::EncodeWithVersion(unsigned char code[BIP32_EXTKEY_WITH_VERSION_SIZE]) const
     401                 :             : {
     402                 :       18515 :     memcpy(code, version, 4);
     403                 :       18515 :     Encode(&code[4]);
     404                 :       18515 : }
     405                 :             : 
     406                 :       38445 : void CExtPubKey::DecodeWithVersion(const unsigned char code[BIP32_EXTKEY_WITH_VERSION_SIZE])
     407                 :             : {
     408                 :       38445 :     memcpy(version, code, 4);
     409                 :       38445 :     Decode(&code[4]);
     410                 :       38445 : }
     411                 :             : 
     412                 :     1005193 : bool CExtPubKey::Derive(CExtPubKey &out, unsigned int _nChild) const {
     413         [ +  - ]:     1005193 :     if (nDepth == std::numeric_limits<unsigned char>::max()) return false;
     414                 :     1005193 :     out.nDepth = nDepth + 1;
     415                 :     1005193 :     CKeyID id = pubkey.GetID();
     416                 :     1005193 :     memcpy(out.vchFingerprint, &id, 4);
     417                 :     1005193 :     out.nChild = _nChild;
     418                 :     1005193 :     return pubkey.Derive(out.pubkey, out.chaincode, _nChild, chaincode);
     419                 :             : }
     420                 :             : 
     421                 :      176348 : /* static */ bool CPubKey::CheckLowS(const std::vector<unsigned char>& vchSig) {
     422                 :      176348 :     secp256k1_ecdsa_signature sig;
     423   [ -  +  +  + ]:      176348 :     if (!ecdsa_signature_parse_der_lax(&sig, vchSig.data(), vchSig.size())) {
     424                 :             :         return false;
     425                 :             :     }
     426                 :      175145 :     return (!secp256k1_ecdsa_signature_normalize(secp256k1_context_static, nullptr, &sig));
     427                 :             : }
        

Generated by: LCOV version 2.0-1