sources/crc64xz.h (23 lines of code) (raw):

/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * \file * Functions and types for CRC checks. * * Generated on Wed Jun 5 12:56:23 2019 * by pycrc v0.9.2, https://pycrc.org * using the configuration: * - Width = 64 * - Poly = 0x42f0e1eba9ea3693 * - XorIn = 0xffffffffffffffff * - ReflectIn = True * - XorOut = 0xffffffffffffffff * - ReflectOut = True * - Algorithm = table-driven * * This file defines the functions crc_init(), crc_update() and crc_finalize(). * * The crc_init() function returns the inital \c crc value and must be called * before the first call to crc_update(). * Similarly, the crc_finalize() function must be called after the last call * to crc_update(), before the \c crc is being used. * is being used. * * The crc_update() function can be called any number of times (including zero * times) in between the crc_init() and crc_finalize() calls. * * This pseudo-code shows an example usage of the API: * \code{.c} * crc_t crc; * unsigned char data[MAX_DATA_LEN]; * size_t data_len; * * crc = crc_init(); * while ((data_len = read_data(data, MAX_DATA_LEN)) > 0) { * crc = crc_update(crc, data, data_len); * } * crc = crc_finalize(crc); * \endcode */ #ifndef CRC64XZ_H #define CRC64XZ_H #include <stdlib.h> #include <stdint.h> #ifdef __cplusplus extern "C" { #endif #include "cql.h" /** * The definition of the used algorithm. * * This is not used anywhere in the generated code, but it may be used by the * application code to call algorithm-specific code, if desired. */ #define CRC_ALGO_TABLE_DRIVEN 1 /** * The type of the CRC values. * * This type must be big enough to contain at least 64 bits. */ typedef uint_fast64_t crc_t; /** * Calculate the initial crc value. * * \return The initial crc value. */ static inline crc_t crc_init(void) { return 0xffffffffffffffff; } /** * Update the crc value with new data. * * \param[in] crc The current crc value. * \param[in] data Pointer to a buffer of \a data_len bytes. * \param[in] data_len Number of bytes in the \a data buffer. * \return The updated crc value. */ cql_noexport crc_t crc_update(crc_t crc, const void *data, size_t data_len); /** * Calculate the final crc value. * * \param[in] crc The current crc value. * \return The final crc value. */ static inline crc_t crc_finalize(crc_t crc) { return crc ^ 0xffffffffffffffff; } #ifdef __cplusplus } /* closing brace for extern "C" */ #endif #endif /* CRC64XZ_H */