tf_crc32.h 333 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef TF_CRC32_H
  7. #define TF_CRC32_H
  8. #include <stddef.h>
  9. #include <stdint.h>
  10. /* compute CRC using Arm intrinsic function */
  11. uint32_t tf_crc32(uint32_t crc, const unsigned char *buf, size_t size);
  12. #endif /* TF_CRC32_H */