CRC-16 and primitive polynomials

Viewed 195

I am trying to calculate the maximal data block length of CRC-16. It is not clear to me if the polynomial 0x8005 is a primitive polynomial.

Is CRC-16 using a primitive polynomial or not?

1 Answers

That polynomial, x16+x15+x2+1, is not primitive. x+1 divides it (modulo 2).

Related