1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 14:30:31 +00:00
trezor-firmware/core/tests/test_trezor.crypto.crc.py

38 lines
901 B
Python
Raw Normal View History

from common import * # isort:skip
2017-12-19 20:54:22 +00:00
from trezor.crypto import crc
class TestCryptoCrc(unittest.TestCase):
vectors_crc32 = [
2023-06-28 10:46:29 +00:00
("123456789", 0xCBF43926),
(
unhexlify(
"0000000000000000000000000000000000000000000000000000000000000000"
),
0x190A55AD,
),
(
unhexlify(
"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
),
0xFF6CAB0B,
),
(
unhexlify(
"000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F"
),
0x91267E8A,
),
("The quick brown fox jumps over the lazy dog", 0x414FA339),
2017-12-19 20:54:22 +00:00
]
def test_crc32(self):
for i, o in self.vectors_crc32:
self.assertEqual(crc.crc32(i), o)
2023-06-28 10:46:29 +00:00
if __name__ == "__main__":
2017-12-19 20:54:22 +00:00
unittest.main()