mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-20 14:39:22 +00:00
core/crypto: add missing field to Blake2b constructor
This commit is contained in:
parent
f756bec0fe
commit
f07ff17fad
@ -43,6 +43,7 @@ STATIC mp_obj_t mod_trezorcrypto_Blake2b_update(mp_obj_t self, mp_obj_t data);
|
||||
/// self,
|
||||
/// data: bytes = None,
|
||||
/// outlen: int = blake2b.digest_size,
|
||||
/// key: bytes = None,
|
||||
/// personal: bytes = None,
|
||||
/// ) -> None:
|
||||
/// """
|
||||
|
@ -64,6 +64,7 @@ class blake2b:
|
||||
self,
|
||||
data: bytes = None,
|
||||
outlen: int = blake2b.digest_size,
|
||||
key: bytes = None,
|
||||
personal: bytes = None,
|
||||
) -> None:
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user