1 // Copyright (c) 2012 The Chromium 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.
5 // Crc8 utility functions.
7 #ifndef RLZ_LIB_CRC8_H_
8 #define RLZ_LIB_CRC8_H_
14 static bool Generate(const unsigned char* data
,
16 unsigned char* check_sum
);
17 static bool Verify(const unsigned char* data
,
19 unsigned char checksum
,
22 }; // namespace rlz_lib
24 #endif // RLZ_LIB_CRC8_H_