blob: abc0f8ac537e6d2b05c4d27f17bdaa2d2830c7e0 [file] [log] [blame]
Julian Halld635ad72022-09-20 15:50:35 +01001/*
2 * Copyright (c) 2022, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#include <common/crc32/crc32.h>
9#include <common/tf_crc32.h>
10
11
12uint32_t crc32(uint32_t crc, const unsigned char *buf, size_t size)
13{
14 return tf_crc32(crc, buf, size);
15}