crc64.h 280 B

1234567891011
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * See lib/crc64.c for the related specification and polynomial arithmetic.
  4. */
  5. #ifndef _LINUX_CRC64_H
  6. #define _LINUX_CRC64_H
  7. #include <linux/types.h>
  8. u64 __pure crc64_be(u64 crc, const void *p, size_t len);
  9. #endif /* _LINUX_CRC64_H */