Branch data Line data Source code
1 : : // Copyright (c) 2020 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 <common/signmessage.h>
7 : : #include <key_io.h>
8 : : #include <test/fuzz/FuzzedDataProvider.h>
9 : : #include <test/fuzz/fuzz.h>
10 : : #include <test/fuzz/util.h>
11 : : #include <util/chaintype.h>
12 : : #include <util/strencodings.h>
13 : :
14 : : #include <cassert>
15 : : #include <cstdint>
16 : : #include <iostream>
17 : : #include <string>
18 : : #include <vector>
19 : :
20 : 1 : void initialize_message()
21 : : {
22 [ + - + - : 1 : static ECC_Context ecc_context{};
+ - ]
23 : 1 : SelectParams(ChainType::REGTEST);
24 : 1 : }
25 : :
26 [ + - ]: 1097 : FUZZ_TARGET(message, .init = initialize_message)
27 : : {
28 : 685 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
29 : 685 : const std::string random_message = fuzzed_data_provider.ConsumeRandomLengthString(1024);
30 : 685 : {
31 : 685 : CKey private_key = ConsumePrivateKey(fuzzed_data_provider);
32 [ + - ]: 685 : std::string signature;
33 [ + - ]: 685 : const bool message_signed = MessageSign(private_key, random_message, signature);
34 [ + + ]: 685 : if (private_key.IsValid()) {
35 [ - + ]: 623 : assert(message_signed);
36 [ + - + - : 623 : const MessageVerificationResult verification_result = MessageVerify(EncodeDestination(PKHash(private_key.GetPubKey().GetID())), signature, random_message);
+ - + - +
- ]
37 [ - + ]: 623 : assert(verification_result == MessageVerificationResult::OK);
38 : : }
39 : 685 : }
40 : 685 : {
41 [ + - ]: 685 : (void)MessageHash(random_message);
42 [ + - ]: 685 : auto address = fuzzed_data_provider.ConsumeRandomLengthString(1024);
43 [ + - ]: 685 : auto signature = fuzzed_data_provider.ConsumeRandomLengthString(1024);
44 [ + - ]: 685 : (void)MessageVerify(address, signature, random_message);
45 [ + - ]: 1370 : (void)SigningResultString(fuzzed_data_provider.PickValueInArray({SigningResult::OK, SigningResult::PRIVATE_KEY_NOT_AVAILABLE, SigningResult::SIGNING_FAILED}));
46 : 685 : }
47 : 685 : }
|