blob: 340d8f754b09c86cd1e58456692cdab6b4b2d20c [file] [log] [blame]
// Copyright 2020 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
#pragma once
#include <stddef.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
#define PW_CHECKSUM_CRC32_INITIAL_VALUE 0xFFFFFFFFu
// C API for calculating the ANSI CRC32 of an array of data.
uint32_t pw_ChecksumCrc32Append(const void* data,
size_t size_bytes,
uint32_t previous_result);
inline uint32_t pw_ChecksumCrc32(const void* data, size_t size_bytes) {
return pw_ChecksumCrc32Append(
data, size_bytes, ~PW_CHECKSUM_CRC32_INITIAL_VALUE);
};
#ifdef __cplusplus
} // extern "C"
#include <span>
namespace pw::checksum {
inline constexpr uint32_t kCrc32InitialValue = PW_CHECKSUM_CRC32_INITIAL_VALUE;
// Calculates initial / one-time ANSI CRC32 for the provided data with standard
// initial value.
inline uint32_t Crc32(std::span<const std::byte> data) {
return pw_ChecksumCrc32(data.data(), data.size_bytes());
}
// Update an existing CRC, pass the previous value as the value argument.
inline uint32_t Crc32(std::span<const std::byte> data,
uint32_t previous_result) {
return pw_ChecksumCrc32Append(
data.data(), data.size_bytes(), previous_result);
}
// Calculates initial / one-time ANSI CRC32 for a single byte with standard
// initial value. This is useful for updating a CRC byte-by-byte.
inline uint32_t Crc32(std::byte value) {
return pw_ChecksumCrc32(&value, sizeof(value));
}
// Update an existing CRC, pass the previous value as the value argument.
inline uint32_t Crc32(std::byte value, uint32_t previous_result) {
return pw_ChecksumCrc32Append(&value, sizeof(value), previous_result);
}
} // namespace pw::checksum
#endif // __cplusplus