summaryrefslogtreecommitdiffstats
path: root/include/crypto/crc.h
blob: 6428634d0a270d18367631ae6e40ec5bbf50728b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Common values for CRC algorithms
 */

#ifndef _CRYPTO_CRC_H
#define _CRYPTO_CRC_H

#include <linux/types.h>

#define CRC32_DIGEST_SIZE        4

struct crc32_state {
	ulong crc;
};

#endif