third_party.pigweed.src/pw_kvs/checksum.cc
Wyatt Hepler 6e3a83b61f pw_kvs: Get checksums working; enable test
- Allow checksums to verify data larger than their internal state. This
  facilitates using a CRC16 in a uint32_t.
- Move checksum functions to the EntryHeader class, since it ultimately
  stores the checksums and is included with it.
- Enable one checksum test. Further tests are needed.
- Make some tweaks to the Get overload for objects.

Change-Id: I989b72905e140794f75c8f8619aaab1623f6f195
2020-02-04 16:35:40 -08:00

34 lines
990 B
C++

// 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.
#include "pw_kvs/checksum.h"
#include <cstring>
namespace pw::kvs {
using std::byte;
Status ChecksumAlgorithm::Verify(span<const byte> checksum) const {
if (checksum.size() < size_bytes()) {
return Status::INVALID_ARGUMENT;
}
if (std::memcmp(state_.data(), checksum.data(), size_bytes()) != 0) {
return Status::DATA_LOSS;
}
return Status::OK;
}
} // namespace pw::kvs