Rev 4722 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4722 | Rev 4743 | ||
|---|---|---|---|
| Line 34... | Line 34... | ||
| 34 | * General CRC and checksum computation implementation. |
34 | * General CRC and checksum computation implementation. |
| 35 | */ |
35 | */ |
| 36 | 36 | ||
| 37 | #include <sys/types.h> |
37 | #include <sys/types.h> |
| 38 | 38 | ||
| 39 | #include "include/crc.h" |
39 | #include "include/checksum.h" |
| 40 | 40 | ||
| 41 | #define CRC_DIVIDER_BE 0x04C11DB7 |
41 | #define CRC_DIVIDER_BE 0x04C11DB7 |
| 42 | 42 | ||
| 43 | #define CRC_DIVIDER_LE 0xEDB88320 |
43 | #define CRC_DIVIDER_LE 0xEDB88320 |
| 44 | 44 | ||