crc7_sw.c 306 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2018 Google LLC.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <sys/crc.h>
  7. uint8_t crc7_be(uint8_t seed, const uint8_t *src, size_t len)
  8. {
  9. while (len--) {
  10. uint8_t e = seed ^ *src++;
  11. uint8_t f = e ^ (e >> 4) ^ (e >> 7);
  12. seed = (f << 1) ^ (f << 4);
  13. }
  14. return seed;
  15. }