MWEB: Allow extended length bech32

pull/816/head
David Burkett 3 years ago committed by Loshan T
parent 2efa3e02dc
commit c544ce64b3

@ -165,7 +165,7 @@ std::string Encode(Encoding encoding, const std::string& hrp, const data& values
} }
/** Decode a Bech32 or Bech32m string. */ /** Decode a Bech32 or Bech32m string. */
DecodeResult Decode(const std::string& str) { DecodeResult Decode(const std::string& str, const bool ext_length) {
bool lower = false, upper = false; bool lower = false, upper = false;
for (size_t i = 0; i < str.size(); ++i) { for (size_t i = 0; i < str.size(); ++i) {
unsigned char c = str[i]; unsigned char c = str[i];
@ -175,7 +175,7 @@ DecodeResult Decode(const std::string& str) {
} }
if (lower && upper) return {}; if (lower && upper) return {};
size_t pos = str.rfind('1'); size_t pos = str.rfind('1');
if (str.size() > 90 || pos == str.npos || pos == 0 || pos + 7 > str.size()) { if ((str.size() > 90 && !ext_length) || pos == str.npos || pos == 0 || pos + 7 > str.size()) {
return {}; return {};
} }
data values(str.size() - 1 - pos); data values(str.size() - 1 - pos);

@ -42,7 +42,7 @@ struct DecodeResult
}; };
/** Decode a Bech32 or Bech32m string. */ /** Decode a Bech32 or Bech32m string. */
DecodeResult Decode(const std::string& str); DecodeResult Decode(const std::string& str, const bool ext_length = false);
} // namespace bech32 } // namespace bech32

Loading…
Cancel
Save