crc32_sw.c 798 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2018 Workaround GmbH.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <sys/crc.h>
  7. uint32_t crc32_ieee(const uint8_t *data, size_t len)
  8. {
  9. return crc32_ieee_update(0x0, data, len);
  10. }
  11. uint32_t crc32_ieee_update(uint32_t crc, const uint8_t *data, size_t len)
  12. {
  13. /* crc table generated from polynomial 0xedb88320 */
  14. static const uint32_t table[16] = {
  15. 0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
  16. 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
  17. 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c,
  18. 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c,
  19. };
  20. crc = ~crc;
  21. for (size_t i = 0; i < len; i++) {
  22. uint8_t byte = data[i];
  23. crc = (crc >> 4) ^ table[(crc ^ byte) & 0x0f];
  24. crc = (crc >> 4) ^ table[(crc ^ ((uint32_t)byte >> 4)) & 0x0f];
  25. }
  26. return (~crc);
  27. }