1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-22 12:32:02 +00:00

fixup! feat(core): add Zcash shielded transactions

This commit is contained in:
Tomas Krnak 2022-11-18 12:14:31 +07:00
parent 44f3739e3b
commit 08b55907ed

View File

@ -40,7 +40,7 @@ def i2bebsp(l: int, x: int) -> Iterable[int]:
return
def ff1_aes256_encrypt(key: bytes, tweak: bytes, x: Iterable[int]):
def ff1_aes256_encrypt(key: bytes, tweak: bytes, x: Iterable[int]) -> Iterable[int]:
n = 88 # n = len(x)
t = len(tweak)
assert t <= 255