core/crypto: add missing field to Blake2b constructor

pull/929/head
Pavol Rusnak 4 years ago
parent f756bec0fe
commit f07ff17fad
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -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…
Cancel
Save