tf_crc32.h 333 Bytes
Newer Older
1
2
3
4
5
6
/*
 * Copyright (c) 2021, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef TF_CRC32_H
#define TF_CRC32_H
9
10
11
12
13

#include <stddef.h>
#include <stdint.h>

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