Branch data Line data Source code
1 : : // Copyright (c) 2014-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 <base58.h>
6 : :
7 : : #include <hash.h>
8 : : #include <uint256.h>
9 : : #include <util/strencodings.h>
10 : : #include <util/string.h>
11 : :
12 : : #include <assert.h>
13 : : #include <string.h>
14 : :
15 : : #include <limits>
16 : :
17 : : /** All alphanumeric characters except for "0", "I", "O", and "l" */
18 : : static const char* pszBase58 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
19 : : static const int8_t mapBase58[256] = {
20 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
21 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
22 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
23 : : -1, 0, 1, 2, 3, 4, 5, 6, 7, 8,-1,-1,-1,-1,-1,-1,
24 : : -1, 9,10,11,12,13,14,15, 16,-1,17,18,19,20,21,-1,
25 : : 22,23,24,25,26,27,28,29, 30,31,32,-1,-1,-1,-1,-1,
26 : : -1,33,34,35,36,37,38,39, 40,41,42,43,-1,44,45,46,
27 : : 47,48,49,50,51,52,53,54, 55,56,57,-1,-1,-1,-1,-1,
28 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
29 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
30 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
31 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
32 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
33 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
34 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
35 : : -1,-1,-1,-1,-1,-1,-1,-1, -1,-1,-1,-1,-1,-1,-1,-1,
36 : : };
37 : :
38 : 30548 : [[nodiscard]] static bool DecodeBase58(const char* psz, std::vector<unsigned char>& vch, int max_ret_len)
39 : : {
40 : : // Skip leading spaces.
41 [ + + + + ]: 36779 : while (*psz && IsSpace(*psz))
42 : 6231 : psz++;
43 : : // Skip and count leading '1's.
44 : 30548 : int zeroes = 0;
45 : 30548 : int length = 0;
46 [ + + ]: 37623 : while (*psz == '1') {
47 : 7124 : zeroes++;
48 [ + + ]: 7124 : if (zeroes > max_ret_len) return false;
49 : 7075 : psz++;
50 : : }
51 : : // Allocate enough space in big-endian base256 representation.
52 : 30499 : int size = strlen(psz) * 733 /1000 + 1; // log(58) / log(256), rounded up.
53 [ + - ]: 30499 : std::vector<unsigned char> b256(size);
54 : : // Process the characters.
55 : : static_assert(std::size(mapBase58) == 256, "mapBase58.size() should be 256"); // guarantee not out of range
56 [ + + + + ]: 2372865 : while (*psz && !IsSpace(*psz)) {
57 : : // Decode base58 character
58 : 2346900 : int carry = mapBase58[(uint8_t)*psz];
59 [ + + ]: 2346900 : if (carry == -1) // Invalid b58 character
60 : 1887 : return false;
61 : 2345013 : int i = 0;
62 [ + + + + : 174436005 : for (std::vector<unsigned char>::reverse_iterator it = b256.rbegin(); (carry != 0 || i < length) && (it != b256.rend()); ++it, ++i) {
+ - + + +
- ]
63 : 86045496 : carry += 58 * (*it);
64 : 86045496 : *it = carry % 256;
65 : 86045496 : carry /= 256;
66 : 86045496 : }
67 [ + - ]: 2345013 : assert(carry == 0);
68 : 2345013 : length = i;
69 [ + + ]: 2345013 : if (length + zeroes > max_ret_len) return false;
70 : 2342366 : psz++;
71 : : }
72 : : // Skip trailing spaces.
73 [ + + ]: 28918 : while (IsSpace(*psz))
74 : 2953 : psz++;
75 [ + + ]: 25965 : if (*psz != 0)
76 : 90 : return false;
77 : : // Skip leading zeroes in b256.
78 : 25875 : std::vector<unsigned char>::iterator it = b256.begin() + (size - length);
79 : : // Copy result into output vector.
80 [ + - ]: 25875 : vch.reserve(zeroes + (b256.end() - it));
81 [ + - ]: 25875 : vch.assign(zeroes, 0x00);
82 [ + + ]: 1599703 : while (it != b256.end())
83 [ + - ]: 1573828 : vch.push_back(*(it++));
84 : 25875 : return true;
85 : 30548 : }
86 : :
87 : 141231 : std::string EncodeBase58(Span<const unsigned char> input)
88 : : {
89 : : // Skip & count leading zeroes.
90 : 141231 : int zeroes = 0;
91 : 141231 : int length = 0;
92 [ + + + + ]: 143151 : while (input.size() > 0 && input[0] == 0) {
93 : 1920 : input = input.subspan(1);
94 : 1920 : zeroes++;
95 : : }
96 : : // Allocate enough space in big-endian base58 representation.
97 : 141231 : int size = input.size() * 138 / 100 + 1; // log(256) / log(58), rounded up.
98 [ + - ]: 141231 : std::vector<unsigned char> b58(size);
99 : : // Process the bytes.
100 [ + + ]: 4147001 : while (input.size() > 0) {
101 : 4005770 : int carry = input[0];
102 : 4005770 : int i = 0;
103 : : // Apply "b58 = b58 * 256 + ch".
104 [ + + + + : 197482770 : for (std::vector<unsigned char>::reverse_iterator it = b58.rbegin(); (carry != 0 || i < length) && (it != b58.rend()); it++, i++) {
+ - + + +
- ]
105 [ + - ]: 96738500 : carry += 256 * (*it);
106 [ + - ]: 96738500 : *it = carry % 58;
107 : 96738500 : carry /= 58;
108 : 96738500 : }
109 : :
110 [ + - ]: 4005770 : assert(carry == 0);
111 : 4005770 : length = i;
112 : 4005770 : input = input.subspan(1);
113 : : }
114 : : // Skip leading zeroes in base58 result.
115 : 141231 : std::vector<unsigned char>::iterator it = b58.begin() + (size - length);
116 [ + + - + ]: 141231 : while (it != b58.end() && *it == 0)
117 : 0 : it++;
118 : : // Translate the result into a string.
119 : 141231 : std::string str;
120 [ + - ]: 141231 : str.reserve(zeroes + (b58.end() - it));
121 [ + - ]: 141231 : str.assign(zeroes, '1');
122 [ + + ]: 5693907 : while (it != b58.end())
123 [ + - ]: 5552676 : str += pszBase58[*(it++)];
124 : 141231 : return str;
125 [ + - ]: 141231 : }
126 : :
127 : 2408 : bool DecodeBase58(const std::string& str, std::vector<unsigned char>& vchRet, int max_ret_len)
128 : : {
129 [ + + ]: 2408 : if (!ContainsNoNUL(str)) {
130 : 18 : return false;
131 : : }
132 : 2390 : return DecodeBase58(str.c_str(), vchRet, max_ret_len);
133 : 2408 : }
134 : :
135 : 139880 : std::string EncodeBase58Check(Span<const unsigned char> input)
136 : : {
137 : : // add 4-byte hash check to the end
138 [ + - ]: 139880 : std::vector<unsigned char> vch(input.begin(), input.end());
139 [ + - ]: 139880 : uint256 hash = Hash(vch);
140 [ + - ]: 139880 : vch.insert(vch.end(), (unsigned char*)&hash, (unsigned char*)&hash + 4);
141 [ + - + - ]: 139880 : return EncodeBase58(vch);
142 : 139880 : }
143 : :
144 : 28158 : [[nodiscard]] static bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRet, int max_ret_len)
145 : : {
146 [ - + + + : 28158 : if (!DecodeBase58(psz, vchRet, max_ret_len > std::numeric_limits<int>::max() - 4 ? std::numeric_limits<int>::max() : max_ret_len + 4) ||
+ + ]
147 : 24571 : (vchRet.size() < 4)) {
148 : 4950 : vchRet.clear();
149 : 4950 : return false;
150 : : }
151 : : // re-calculate the checksum, ensure it matches the included 4-byte checksum
152 : 23208 : uint256 hash = Hash(Span{vchRet}.first(vchRet.size() - 4));
153 [ + + ]: 23208 : if (memcmp(&hash, &vchRet[vchRet.size() - 4], 4) != 0) {
154 : 178 : vchRet.clear();
155 : 178 : return false;
156 : : }
157 : 23030 : vchRet.resize(vchRet.size() - 4);
158 : 23030 : return true;
159 : 28158 : }
160 : :
161 : 28176 : bool DecodeBase58Check(const std::string& str, std::vector<unsigned char>& vchRet, int max_ret)
162 : : {
163 [ + + ]: 28176 : if (!ContainsNoNUL(str)) {
164 : 18 : return false;
165 : : }
166 : 28158 : return DecodeBase58Check(str.c_str(), vchRet, max_ret);
167 : 28176 : }
|