Branch data Line data Source code
1 : : // Copyright (c) 2019-2022 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 <test/fuzz/fuzz.h> 6 : : 7 : : #include <base58.h> 8 : : #include <psbt.h> 9 : : #include <util/strencodings.h> 10 : : #include <util/string.h> 11 : : 12 : : #include <cassert> 13 : : #include <cstdint> 14 : : #include <string> 15 : : #include <vector> 16 : : 17 [ + - - + ]: 1588 : FUZZ_TARGET(base_encode_decode) 18 [ + - ]: 173 : { 19 [ + - ]: 1069 : const std::string random_encoded_string(buffer.begin(), buffer.end()); 20 : : 21 : 1069 : std::vector<unsigned char> decoded; 22 [ + - + + ]: 1069 : if (DecodeBase58(random_encoded_string, decoded, 100)) { 23 [ + - + - ]: 87 : const std::string encoded_string = EncodeBase58(decoded); 24 [ + - + - ]: 87 : assert(encoded_string == TrimStringView(encoded_string)); 25 [ + - + - : 260 : assert(ToLower(encoded_string) == ToLower(TrimString(random_encoded_string))); + - + - + - ] 26 : 87 : } 27 : 173 : 28 [ + - + + ]: 1069 : if (DecodeBase58Check(random_encoded_string, decoded, 100)) { 29 [ + - + - ]: 4 : const std::string encoded_string = EncodeBase58Check(decoded); 30 [ + - + - ]: 4 : assert(encoded_string == TrimString(encoded_string)); 31 [ + - + - : 4 : assert(ToLower(encoded_string) == ToLower(TrimString(random_encoded_string))); + - + - ] 32 : 4 : } 33 : : 34 [ + - ]: 1069 : auto result = DecodeBase32(random_encoded_string); 35 [ + + ]: 1069 : if (result) { 36 [ + - + - : 17 : const std::string encoded_string = EncodeBase32(*result); + - ] 37 [ + - + - ]: 17 : assert(encoded_string == TrimStringView(encoded_string)); 38 [ + - + - : 17 : assert(ToLower(encoded_string) == ToLower(TrimString(random_encoded_string))); + - + - ] 39 : 17 : } 40 : : 41 [ + - ]: 1069 : result = DecodeBase64(random_encoded_string); 42 [ + + ]: 1069 : if (result) { 43 [ + - + - : 969 : const std::string encoded_string = EncodeBase64(*result); + - ] 44 [ + - + - ]: 969 : assert(encoded_string == TrimString(encoded_string)); 45 [ + - + - : 969 : assert(ToLower(encoded_string) == ToLower(TrimString(random_encoded_string))); + - - + ] 46 : 969 : } 47 : : 48 [ + - ]: 1069 : PartiallySignedTransaction psbt; 49 : 1069 : std::string error; 50 [ + - ]: 1069 : (void)DecodeBase64PSBT(psbt, random_encoded_string, error); 51 : 1069 : }