1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-01 20:08:26 +00:00
trezor-firmware/mocks/trezor/crypto/pbkdf2.py

13 lines
254 B
Python
Raw Normal View History

2016-09-27 14:48:21 +00:00
2017-04-08 16:43:26 +00:00
# extmod/modtrezorcrypto/modtrezorcrypto-pbkdf2.h
2016-09-27 14:48:21 +00:00
def update(self, iterations: int) -> None:
2016-10-07 11:27:43 +00:00
'''
Update a PBKDF2 context
'''
2016-09-27 14:48:21 +00:00
2017-04-08 16:43:26 +00:00
# extmod/modtrezorcrypto/modtrezorcrypto-pbkdf2.h
2016-09-27 14:48:21 +00:00
def key(self) -> bytes:
2016-10-07 11:27:43 +00:00
'''
Retreive derived key
'''