Home | History | Annotate | Download | only in test

Lines Matching refs:crc

141         crc = binascii.crc_hqx(self.type2test(b"Test the CRC-32 of"), 0)
142 crc = binascii.crc_hqx(self.type2test(b" this string."), crc)
143 self.assertEqual(crc, 14290)
149 crc = binascii.crc32(self.type2test("Test the CRC-32 of"))
150 crc = binascii.crc32(self.type2test(" this string."), crc)
151 self.assertEqual(crc, 1571220330)