mirror of
https://github.com/logos-co/nomos-specs.git
synced 2025-01-09 15:15:47 +00:00
7 lines
145 B
Python
7 lines
145 B
Python
from random import randint
|
|
|
|
|
|
def random_bytes(size: int) -> bytes:
|
|
assert size >= 0
|
|
return bytes([randint(0, 255) for _ in range(size)])
|