/root/bitcoin/src/test/fuzz/key_io.cpp
Line | Count | Source |
1 | | // Copyright (c) 2020-present The Bitcoin Core developers |
2 | | // Distributed under the MIT software license, see the accompanying |
3 | | // file COPYING or http://www.opensource.org/licenses/mit-license.php. |
4 | | |
5 | | #include <chainparams.h> |
6 | | #include <key_io.h> |
7 | | #include <test/fuzz/fuzz.h> |
8 | | #include <util/chaintype.h> |
9 | | |
10 | | #include <cassert> |
11 | | #include <cstdint> |
12 | | #include <string> |
13 | | #include <vector> |
14 | | |
15 | | void initialize_key_io() |
16 | 0 | { |
17 | 0 | static ECC_Context ecc_context{}; |
18 | 0 | SelectParams(ChainType::MAIN); |
19 | 0 | } |
20 | | |
21 | | FUZZ_TARGET(key_io, .init = initialize_key_io) |
22 | 0 | { |
23 | 0 | const std::string random_string(buffer.begin(), buffer.end()); |
24 | |
|
25 | 0 | const CKey key = DecodeSecret(random_string); |
26 | 0 | if (key.IsValid()) { Branch (26:9): [True: 0, False: 0]
|
27 | 0 | assert(key == DecodeSecret(EncodeSecret(key))); Branch (27:9): [True: 0, False: 0]
|
28 | 0 | } |
29 | | |
30 | 0 | const CExtKey ext_key = DecodeExtKey(random_string); |
31 | 0 | if (ext_key.key.size() == 32) { Branch (31:9): [True: 0, False: 0]
|
32 | 0 | assert(ext_key == DecodeExtKey(EncodeExtKey(ext_key))); Branch (32:9): [True: 0, False: 0]
|
33 | 0 | } |
34 | | |
35 | 0 | const CExtPubKey ext_pub_key = DecodeExtPubKey(random_string); |
36 | 0 | if (ext_pub_key.pubkey.size() == CPubKey::COMPRESSED_SIZE) { Branch (36:9): [True: 0, False: 0]
|
37 | | assert(ext_pub_key == DecodeExtPubKey(EncodeExtPubKey(ext_pub_key))); Branch (37:9): [True: 0, False: 0]
|
38 | 0 | } |
39 | 0 | } |