mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-27 17:08:14 +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,
|
/// self,
|
||||||
/// data: bytes = None,
|
/// data: bytes = None,
|
||||||
/// outlen: int = blake2b.digest_size,
|
/// outlen: int = blake2b.digest_size,
|
||||||
|
/// key: bytes = None,
|
||||||
/// personal: bytes = None,
|
/// personal: bytes = None,
|
||||||
/// ) -> None:
|
/// ) -> None:
|
||||||
/// """
|
/// """
|
||||||
|
@ -64,6 +64,7 @@ class blake2b:
|
|||||||
self,
|
self,
|
||||||
data: bytes = None,
|
data: bytes = None,
|
||||||
outlen: int = blake2b.digest_size,
|
outlen: int = blake2b.digest_size,
|
||||||
|
key: bytes = None,
|
||||||
personal: bytes = None,
|
personal: bytes = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user