en:pfw:crc32_koop
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:pfw:crc32_koop [2023-09-04 18:12] – gelöscht - Externe Bearbeitung (Unbekanntes Datum) 127.0.0.1 | en:pfw:crc32_koop [2023-09-04 18:12] (current) – ↷ Seite von pfw:crc32_koop nach en:pfw:crc32_koop verschoben uho | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{pfw: | ||
+ | ==== CRC-32 KOOPMAN ==== | ||
+ | |||
+ | Since CRC's are used to detect errors, developers have been searching for the optimal polynomial. More specifically: | ||
+ | |||
+ | [Here a link to the CRC-page of Philip Koopman at Carnegie Mellon University] (https: | ||
+ | |||
+ | [and the link to the paper mentioned above] (https: | ||
+ | |||
+ | === Generic Forth example: === | ||
+ | |||
+ | CRC32_KOOP takes a start address and length of a byte-array as input and produces the 32bit CRC according to KOOPMAN. This algorithm is exactly the same as the CRC32-IEEE version, with the exception of the polynomial. So again the values are shifted to the right and the polynomial is reversed to avoid having to reverse every received byte, and the output is inverted to create the final output. | ||
+ | |||
+ | < | ||
+ | hex | ||
+ | EB31D82E constant crc-polynomial | ||
+ | |||
+ | : CRC32_KOOP ( addr len -- crc ) | ||
+ | FFFFFFFF -rot \ FFFFFFFF = start-value CRC | ||
+ | bounds do | ||
+ | i c@ xor | ||
+ | 8 0 do | ||
+ | dup 1 and if \ lsb = ' | ||
+ | 1 rshift | ||
+ | crc-polynomial xor | ||
+ | else | ||
+ | 1 rshift | ||
+ | then | ||
+ | loop | ||
+ | loop | ||
+ | -1 xor ; \ invert output | ||
+ | | ||
+ | </ | ||
+ | |||
+ | ===== Contributions ===== | ||
+ | |||
+ | < | ||
+ | |||