Compute the CRC32 primitive on one byte.
(ch, crc)
| 721 | crctable = _crctable |
| 722 | |
| 723 | def crc32(ch, crc): |
| 724 | """Compute the CRC32 primitive on one byte.""" |
| 725 | return (crc >> 8) ^ crctable[(crc ^ ch) & 0xFF] |
| 726 | |
| 727 | def update_keys(c): |
| 728 | nonlocal key0, key1, key2 |
no outgoing calls
no test coverage detected
searching dependent graphs…