blob: abc0f8ac537e6d2b05c4d27f17bdaa2d2830c7e0 [file] [log] [blame]
/*
* Copyright (c) 2022, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*
*/
#include <common/crc32/crc32.h>
#include <common/tf_crc32.h>
uint32_t crc32(uint32_t crc, const unsigned char *buf, size_t size)
{
return tf_crc32(crc, buf, size);
}