summaryrefslogtreecommitdiffstats
path: root/include/crypto/crc.h
blob: f36c2d644503b922b6fa4f52ef508cbfaba48f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-only */

/*
 * 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