crc.h 398 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief CRC utils
  9. */
  10. #ifndef __UTILS_CRC_H__
  11. #define __UTILS_CRC_H__
  12. uint16_t utils_crc16(const uint8_t *src, int len, uint16_t polynomial,
  13. uint16_t initial_value, int pad);
  14. uint32_t utils_crc32(uint32_t crc, const uint8_t *buf, int len);
  15. #endif /* __UTILS_CRC_H__ */