mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-20 14:39:22 +00:00
feat(core): update bech32.py to support Bech32m
This commit is contained in:
parent
86ea94d06b
commit
9aa07c7f96
@ -90,4 +90,4 @@ def address_from_public_key(pubkey: bytes, hrp: str) -> str:
|
||||
|
||||
convertedbits = bech32.convertbits(h, 8, 5, False)
|
||||
|
||||
return bech32.bech32_encode(hrp, convertedbits)
|
||||
return bech32.bech32_encode(hrp, convertedbits, bech32.Encoding.BECH32)
|
||||
|
@ -18,7 +18,7 @@ def encode(hrp: str, data: bytes) -> str:
|
||||
converted_bits = bech32.convertbits(data, 8, 5)
|
||||
if converted_bits is None:
|
||||
raise ValueError
|
||||
return bech32.bech32_encode(hrp, converted_bits)
|
||||
return bech32.bech32_encode(hrp, converted_bits, bech32.Encoding.BECH32)
|
||||
|
||||
|
||||
def decode_unsafe(bech: str) -> bytes:
|
||||
@ -31,11 +31,13 @@ def get_hrp(bech: str) -> str:
|
||||
|
||||
|
||||
def decode(hrp: str, bech: str) -> bytes:
|
||||
decoded_hrp, data = bech32.bech32_decode(bech, 130)
|
||||
decoded_hrp, data, spec = bech32.bech32_decode(bech, 130)
|
||||
if data is None:
|
||||
raise ValueError
|
||||
if decoded_hrp != hrp:
|
||||
raise ValueError
|
||||
if spec != bech32.Encoding.BECH32:
|
||||
raise ValueError
|
||||
|
||||
decoded = bech32.convertbits(data, 5, 8, False)
|
||||
if decoded is None:
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Copyright (c) 2017 Pieter Wuille
|
||||
# Copyright (c) 2017, 2020 Pieter Wuille
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
@ -18,18 +18,32 @@
|
||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
# THE SOFTWARE.
|
||||
|
||||
"""Reference implementation for Bech32 and segwit addresses."""
|
||||
"""Reference implementation for Bech32/Bech32m and segwit addresses."""
|
||||
|
||||
if False:
|
||||
from enum import IntEnum
|
||||
from typing import Iterable, Union, TypeVar
|
||||
|
||||
A = TypeVar("A")
|
||||
B = TypeVar("B")
|
||||
C = TypeVar("C")
|
||||
# usage: OptionalTuple[int, list[int]] is either (None, None) or (someint, somelist)
|
||||
# but not (None, somelist)
|
||||
OptionalTuple = Union[tuple[None, None], tuple[A, B]]
|
||||
OptionalTuple2 = Union[tuple[None, None], tuple[A, B]]
|
||||
OptionalTuple3 = Union[tuple[None, None, None], tuple[A, B, C]]
|
||||
else:
|
||||
IntEnum = object # type: ignore
|
||||
|
||||
|
||||
class Encoding(IntEnum):
|
||||
"""Enumeration type to list the various supported encodings."""
|
||||
|
||||
BECH32 = 1
|
||||
BECH32M = 2
|
||||
|
||||
|
||||
CHARSET = "qpzry9x8gf2tvdw0s3jn54khce6mua7l"
|
||||
BECH32M_CONST = 0x2BC830A3
|
||||
|
||||
|
||||
def bech32_polymod(values: list[int]) -> int:
|
||||
@ -49,41 +63,50 @@ def bech32_hrp_expand(hrp: str) -> list[int]:
|
||||
return [ord(x) >> 5 for x in hrp] + [0] + [ord(x) & 31 for x in hrp]
|
||||
|
||||
|
||||
def bech32_verify_checksum(hrp: str, data: list[int]) -> bool:
|
||||
def bech32_verify_checksum(hrp: str, data: list[int]) -> Encoding | None:
|
||||
"""Verify a checksum given HRP and converted data characters."""
|
||||
return bech32_polymod(bech32_hrp_expand(hrp) + data) == 1
|
||||
const = bech32_polymod(bech32_hrp_expand(hrp) + data)
|
||||
if const == 1:
|
||||
return Encoding.BECH32
|
||||
if const == BECH32M_CONST:
|
||||
return Encoding.BECH32M
|
||||
return None
|
||||
|
||||
|
||||
def bech32_create_checksum(hrp: str, data: list[int]) -> list[int]:
|
||||
def bech32_create_checksum(hrp: str, data: list[int], spec: Encoding) -> list[int]:
|
||||
"""Compute the checksum values given HRP and data."""
|
||||
values = bech32_hrp_expand(hrp) + data
|
||||
polymod = bech32_polymod(values + [0, 0, 0, 0, 0, 0]) ^ 1
|
||||
const = BECH32M_CONST if spec == Encoding.BECH32M else 1
|
||||
polymod = bech32_polymod(values + [0, 0, 0, 0, 0, 0]) ^ const
|
||||
return [(polymod >> 5 * (5 - i)) & 31 for i in range(6)]
|
||||
|
||||
|
||||
def bech32_encode(hrp: str, data: list[int]) -> str:
|
||||
def bech32_encode(hrp: str, data: list[int], spec: Encoding) -> str:
|
||||
"""Compute a Bech32 string given HRP and data values."""
|
||||
combined = data + bech32_create_checksum(hrp, data)
|
||||
combined = data + bech32_create_checksum(hrp, data, spec)
|
||||
return hrp + "1" + "".join([CHARSET[d] for d in combined])
|
||||
|
||||
|
||||
def bech32_decode(bech: str, max_bech_len: int = 90) -> OptionalTuple[str, list[int]]:
|
||||
"""Validate a Bech32 string, and determine HRP and data."""
|
||||
def bech32_decode(
|
||||
bech: str, max_bech_len: int = 90
|
||||
) -> OptionalTuple3[str, list[int], Encoding]:
|
||||
"""Validate a Bech32/Bech32m string, and determine HRP and data."""
|
||||
if (any(ord(x) < 33 or ord(x) > 126 for x in bech)) or (
|
||||
bech.lower() != bech and bech.upper() != bech
|
||||
):
|
||||
return (None, None)
|
||||
return (None, None, None)
|
||||
bech = bech.lower()
|
||||
pos = bech.rfind("1")
|
||||
if pos < 1 or pos + 7 > len(bech) or len(bech) > max_bech_len:
|
||||
return (None, None)
|
||||
return (None, None, None)
|
||||
if not all(x in CHARSET for x in bech[pos + 1 :]):
|
||||
return (None, None)
|
||||
return (None, None, None)
|
||||
hrp = bech[:pos]
|
||||
data = [CHARSET.find(x) for x in bech[pos + 1 :]]
|
||||
if not bech32_verify_checksum(hrp, data):
|
||||
return (None, None)
|
||||
return (hrp, data[:-6])
|
||||
spec = bech32_verify_checksum(hrp, data)
|
||||
if spec is None:
|
||||
return (None, None, None)
|
||||
return (hrp, data[:-6], spec)
|
||||
|
||||
|
||||
def convertbits(
|
||||
@ -111,10 +134,14 @@ def convertbits(
|
||||
return ret
|
||||
|
||||
|
||||
def decode(hrp: str, addr: str) -> OptionalTuple[int, list[int]]:
|
||||
def decode(hrp: str, addr: str) -> OptionalTuple2[int, list[int]]:
|
||||
"""Decode a segwit address."""
|
||||
hrpgot, data = bech32_decode(addr)
|
||||
if data is None or hrpgot != hrp:
|
||||
hrpgot, data, spec = bech32_decode(addr)
|
||||
# the following two lines are strictly not required
|
||||
# but they make mypy happy
|
||||
if data is None:
|
||||
return (None, None)
|
||||
if hrpgot != hrp:
|
||||
return (None, None)
|
||||
decoded = convertbits(data[1:], 5, 8, False)
|
||||
if decoded is None or len(decoded) < 2 or len(decoded) > 40:
|
||||
@ -123,6 +150,13 @@ def decode(hrp: str, addr: str) -> OptionalTuple[int, list[int]]:
|
||||
return (None, None)
|
||||
if data[0] == 0 and len(decoded) != 20 and len(decoded) != 32:
|
||||
return (None, None)
|
||||
if (
|
||||
data[0] == 0
|
||||
and spec != Encoding.BECH32
|
||||
or data[0] != 0
|
||||
and spec != Encoding.BECH32M
|
||||
):
|
||||
return (None, None)
|
||||
return (data[0], decoded)
|
||||
|
||||
|
||||
@ -131,7 +165,8 @@ def encode(hrp: str, witver: int, witprog: Iterable[int]) -> str | None:
|
||||
data = convertbits(witprog, 8, 5)
|
||||
if data is None:
|
||||
return None
|
||||
ret = bech32_encode(hrp, [witver] + data)
|
||||
spec = Encoding.BECH32 if witver == 0 else Encoding.BECH32M
|
||||
ret = bech32_encode(hrp, [witver] + data, spec)
|
||||
if decode(hrp, ret) == (None, None):
|
||||
return None
|
||||
return ret
|
||||
|
@ -31,6 +31,7 @@ def segwit_scriptpubkey(witver, witprog):
|
||||
|
||||
|
||||
VALID_CHECKSUM = [
|
||||
# BIP-173
|
||||
"A12UEL5L",
|
||||
"a12uel5l",
|
||||
"an83characterlonghumanreadablepartthatcontainsthenumber1andtheexcludedcharactersbio1tt5tgs",
|
||||
@ -41,6 +42,7 @@ VALID_CHECKSUM = [
|
||||
]
|
||||
|
||||
INVALID_CHECKSUM = [
|
||||
# BIP-173
|
||||
" 1nwldj5",
|
||||
"\x7F" + "1axkwrx",
|
||||
"\x80" + "1eym55h",
|
||||
@ -56,6 +58,7 @@ INVALID_CHECKSUM = [
|
||||
]
|
||||
|
||||
VALID_ADDRESS = [
|
||||
# BIP-173
|
||||
["BC1QW508D6QEJXTDG4Y5R3ZARVARY0C5XW7KV8F3T4", "0014751e76e8199196d454941c45d1b3a323f1433bd6"],
|
||||
["tb1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3q0sl5k7",
|
||||
"00201863143c14c5166804bd19203356da136c985678cd4d27a1b8c6329604903262"],
|
||||
@ -68,6 +71,7 @@ VALID_ADDRESS = [
|
||||
]
|
||||
|
||||
INVALID_ADDRESS = [
|
||||
# BIP-173
|
||||
"tc1qw508d6qejxtdg4y5r3zarvary0c5xw7kg3g4ty",
|
||||
"bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t5",
|
||||
"BC13W508D6QEJXTDG4Y5R3ZARVARY0C5XW7KN40WF2",
|
||||
|
Loading…
Reference in New Issue
Block a user