mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-08 05:32:39 +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)
|