mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-17 11:58:13 +00:00
20 lines
469 B
Python
20 lines
469 B
Python
|
from typing import *
|
||
|
|
||
|
# extmod/modtrezorcrypto/modtrezorcrypto-random.h
|
||
|
def uniform(n: int) -> int:
|
||
|
'''
|
||
|
Compute uniform random number from interval 0 ... n - 1.
|
||
|
'''
|
||
|
|
||
|
# extmod/modtrezorcrypto/modtrezorcrypto-random.h
|
||
|
def bytes(len: int) -> bytes:
|
||
|
'''
|
||
|
Generate random bytes sequence of length len.
|
||
|
'''
|
||
|
|
||
|
# extmod/modtrezorcrypto/modtrezorcrypto-random.h
|
||
|
def shuffle(data: list) -> None:
|
||
|
'''
|
||
|
Shuffles items of given list (in-place).
|
||
|
'''
|