cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

crc32c.h (331B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _LINUX_CRC32C_H
      3#define _LINUX_CRC32C_H
      4
      5#include <linux/types.h>
      6
      7extern u32 crc32c(u32 crc, const void *address, unsigned int length);
      8extern const char *crc32c_impl(void);
      9
     10/* This macro exists for backwards-compatibility. */
     11#define crc32c_le crc32c
     12
     13#endif	/* _LINUX_CRC32C_H */