xref: /aosp_15_r20/external/arm-trusted-firmware/include/common/tf_crc32.h (revision 54fd6939e177f8ff529b10183254802c76df6d08)
1 /*
2  * Copyright (c) 2021, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef TF_CRC32_H
8 #define TF_CRC32_H
9 
10 #include <stddef.h>
11 #include <stdint.h>
12 
13 /* compute CRC using Arm intrinsic function */
14 uint32_t tf_crc32(uint32_t crc, const unsigned char *buf, size_t size);
15 
16 #endif /* TF_CRC32_H */
17