3
0

crc32.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * CRC32 table fill function
  4. * Copyright (C) 2006 by Rob Sullivan <cogito.ergo.cogito@gmail.com>
  5. * (I can't really claim much credit however, as the algorithm is
  6. * very well-known)
  7. *
  8. * The following function creates a CRC32 table depending on whether
  9. * a big-endian (0x04c11db7) or little-endian (0xedb88320) CRC32 is
  10. * required. Admittedly, there are other CRC32 polynomials floating
  11. * around, but Busybox doesn't use them.
  12. *
  13. * endian = 1: big-endian
  14. * endian = 0: little-endian
  15. */
  16. #include "libbb.h"
  17. uint32_t *crc32_filltable(uint32_t *crc_table, int endian)
  18. {
  19. uint32_t polynomial = endian ? 0x04c11db7 : 0xedb88320;
  20. uint32_t c;
  21. int i, j;
  22. if (!crc_table)
  23. crc_table = xmalloc(256 * sizeof(uint32_t));
  24. for (i = 0; i < 256; i++) {
  25. c = endian ? (i << 24) : i;
  26. for (j = 8; j; j--) {
  27. if (endian)
  28. c = (c&0x80000000) ? ((c << 1) ^ polynomial) : (c << 1);
  29. else
  30. c = (c&1) ? ((c >> 1) ^ polynomial) : (c >> 1);
  31. }
  32. *crc_table++ = c;
  33. }
  34. return crc_table - 256;
  35. }