1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/core/tests/test_trezor.crypto.crc.py
obrusvit e073e619c9 chore(tests): re-run black and isort on core/tests
isort set to skip the first necessary "from common import *" line. A
better solution would be to get rid of the need of this import in the
future.

[no changelog]
2024-02-22 12:10:12 +01:00

38 lines
901 B
Python

from common import * # isort:skip
from trezor.crypto import crc
class TestCryptoCrc(unittest.TestCase):
vectors_crc32 = [
("123456789", 0xCBF43926),
(
unhexlify(
"0000000000000000000000000000000000000000000000000000000000000000"
),
0x190A55AD,
),
(
unhexlify(
"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
),
0xFF6CAB0B,
),
(
unhexlify(
"000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F"
),
0x91267E8A,
),
("The quick brown fox jumps over the lazy dog", 0x414FA339),
]
def test_crc32(self):
for i, o in self.vectors_crc32:
self.assertEqual(crc.crc32(i), o)
if __name__ == "__main__":
unittest.main()