blob: acbc4582756763ee621326e8ed53d47f8091acd9 [file] [log] [blame]
Rob Landleyc57ec372006-04-10 17:07:15 +00001/* 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
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00009 * a big-endian (0x04c11db7) or little-endian (0xedb88320) CRC32 is
Rob Landleyc57ec372006-04-10 17:07:15 +000010 * 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
Rob Landleyc57ec372006-04-10 17:07:15 +000017#include "libbb.h"
18
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000019uint32_t *crc32_filltable(uint32_t *crc_table, int endian)
Rob Landleyd921b2e2006-08-03 15:41:12 +000020{
Rob Landleyc57ec372006-04-10 17:07:15 +000021 uint32_t polynomial = endian ? 0x04c11db7 : 0xedb88320;
22 uint32_t c;
23 int i, j;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000024
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000025 if (!crc_table)
26 crc_table = xmalloc(256 * sizeof(uint32_t));
27
Rob Landleyc57ec372006-04-10 17:07:15 +000028 for (i = 0; i < 256; i++) {
29 c = endian ? (i << 24) : i;
30 for (j = 8; j; j--) {
31 if (endian)
32 c = (c&0x80000000) ? ((c << 1) ^ polynomial) : (c << 1);
33 else
34 c = (c&1) ? ((c >> 1) ^ polynomial) : (c >> 1);
35 }
36 *crc_table++ = c;
37 }
38
39 return crc_table - 256;
40}