blob: 0d14d573920ed36aad5a712ad87d3ade78948255 [file] [log] [blame]
Manish V Badarkhe7a867922021-04-22 14:41:27 +01001/*
2 * Copyright (c) 2021, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef HW_CRC32_H
8#define HW_CRC32_H
9
10#include <stddef.h>
11#include <stdint.h>
12
13/* compute CRC using Arm intrinsic function */
14uint32_t hw_crc32(uint32_t crc, const unsigned char *buf, size_t size);
15
16#endif /* HW_CRC32_H */