en:pfw:crc-math
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:pfw:crc-math [2023-09-04 18:12] – gelöscht - Externe Bearbeitung (Unbekanntes Datum) 127.0.0.1 | en:pfw:crc-math [2023-09-04 18:12] (current) – ↷ Seite von pfw:crc-math nach en:pfw:crc-math verschoben uho | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{pfw: | ||
+ | ====== CRC - The Mathematics of Cyclic Redundance Checks ====== | ||
+ | |||
+ | The idea of validating messages using cyclic redundancy checks (CRCs) goes back to an invention of W. Wesley Petersen in 1961((W. W. Peterson: Cyclic Codes for Error Detection. In: Proceedings of the IRE, Vol. 49, No. 1, 1961, S. 228–235 | ||
+ | )).\\ | ||
+ | It is based on cyclic codes which themselves are based on polynomial ring arithmetic. Let's see what this is all about. | ||
+ | |||
+ | ===== Polynomials and their arithmetic ===== | ||
+ | |||
+ | Mathematians define entities with operations on them and then study the general properties of the resulting structures. For example, they do this extensively with natural numbers in number theory where the existence of prime numbers and the representation of any number as a unique product of prime numbers is an important result that has applications e.g. in todays cryptography. Among the structures mathematians study are //fields//, //groups// and //rings//. Here we will look at rings. | ||
+ | |||
+ | ===== Contributions ===== | ||
+ | |||
+ | < | ||
+ | |||
+ | |||
+ | Rings are general structures of entities along with two operations called // | ||
+ | Based on theses laws mathematicians deduce additional common properties. All rings dispite their elements share these common properties. | ||
+ | |||
+ | There are rings with infinite many members such as the ring of integers. | ||
+ | |||
+ | There are also rings with a finite number of members. If you take a number n you can consider all numbers that have the same remainder divided by n to be equivalent. This leads to quotient rings having the elements 0 to n-1. Addition and multiplication wrap around mod p.\\ | ||
+ | If n is a prime number the rings have additional beneficial properties. They are fields and there is always a unique factorization of any ring member into prime factors. On important prime quotient ring is W< | ||
+ | |||
+ | Computer scientists are interested in rings that have 2< | ||
+ | |||
+ | Quotient rings based on // | ||
+ | |||
+ | So let's look at polynomials. We will concentrate on a special kind of polynomials that is well suited for our application area. | ||
+ | |||
+ | A polynomial is an entity with the following definition: | ||
+ | |||
+ | ==== Polynomials ==== | ||
+ | |||
+ | Assume we have a single symbol x a so called //generator variable// | ||
+ | Assume we have a set of coefficients C which itself is a commutative ring with appropriate addition and multiplication. For our purpose assume that C is the quotient ring W< | ||
+ | |||
+ | A polynomial over W< | ||
+ | |||
+ | a< | ||
+ | |||
+ | where a< | ||
+ | |||
+ | The //degree// of the polynomial is the exponent i of the largest x< | ||
+ | |||
+ | The set of polynomials over W< | ||
+ | |||
+ | Note that different from high school the variable x never gets a value when we think of polynomials this way. We're not interested in evaluating polynomials but only in their properties as entities. We use them as self contained atomic elements, as values of their own for computation. | ||
+ | |||
+ | ==== Polynomial Multipication and Division ==== | ||
+ | |||
+ | We can add and multiply polynomials and similar to integers we can think of division of polynomials. | ||
+ | |||
+ | As an example let's add (x< | ||
+ | |||
+ | We can multiply (x< | ||
+ | |||
+ | Similar to prime numbers some polynomials cannot be expressed as a product of two other polynomials. For example there are no proper factors for x< | ||
+ | |||
+ | If you divide polynomials you get - similar to the notion of remainders in integer division - // | ||
+ | |||
+ | ==== Polynomial Quotient Rings with respect to an Irreducible Polynomial ==== | ||
+ | |||
+ | If we take an irreducible polynomial p and we look at the quotient ring R< | ||
+ | |||
+ | Every larger polynomial can be mapped into one of the polynomials in R< | ||
+ | |||
+ | ===== Cyclic Redundancy Check ===== | ||
+ | |||
+ | The idea of a cyclic redundancy check is to consider the message to be checked as a huge polynomial over W< | ||
+ | |||
+ | ===== Implementating CRC ===== | ||
+ | |||
+ | Implementations differ in the way they consider the message to be a large polynomial. They also differ in their generator polynomial. | ||
+ | |||
+ | As an example let's consider CRC-16-CCITT that uses the generator polynomial | ||
+ | |||
+ | x< | ||
+ | |||
+ | Assuming the first coefficient is always 1 this polynomial can be represented as the combination of the 16 bits | ||
+ | |||
+ | < | ||
+ | (1) 0001 0000 0010 0001 = $1021 | ||
+ | 16 1 1 1 98 7654 3210 | ||
+ | 5 2 1 | ||
+ | </ | ||
+ | |||
+ | Similar to paper and pencil division with numbers we divide by the generator polynomial by subtraction according to place. As the coefficients are from W< | ||
+ | |||
+ | The bits of the message are inspected one after the other and if possible the generator polynomial is subtracted at the inspected position. | ||
+ | |||
+ | At the end of this procedure we gain the remainder of the division by the generator polynomial encoded as a 16-bit-number. | ||
+ | |||
+ | //DISCUSS THE CONCRETE ALGORITHM AND THE EXAMPLE CALCULATION// | ||
+ | |||
+ | uh 2022-05-16 | ||