1 /* Copyright (c) 2013 The Chromium OS Authors. All rights reserved. 2 * Use of this source code is governed by a BSD-style license that can be 3 * found in the LICENSE file. 4 * 5 * Very simple 8-bit CRC function. 6 */ 7 #ifndef VBOOT_REFERENCE_CRC8_H_ 8 #define VBOOT_REFERENCE_CRC8_H_ 9 #include "sysincludes.h" 10 11 uint8_t Crc8(const void *data, int len); 12 13 #endif /* VBOOT_REFERENCE_CRC8_H_ */ 14