mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
3 lines
71 B
Python
3 lines
71 B
Python
def all_ff_bytes(data: bytes):
|
|
return all(i == 0xFF for i in data)
|