chromium/components/reporting/encryption/verification.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/reporting/encryption/verification.h"

#include "components/reporting/encryption/primitives.h"
#include "components/reporting/util/status.h"

namespace reporting {

namespace {

// Well-known public signature verification keys.
constexpr uint8_t kProdVerificationKey[kKeySize] =;

constexpr uint8_t kDevVerificationKey[kKeySize] =;

}  // namespace

// static
std::string_view SignatureVerifier::VerificationKey() {}

// static
std::string_view SignatureVerifier::VerificationKeyDev() {}

SignatureVerifier::SignatureVerifier(std::string_view verification_public_key)
    :{}

Status SignatureVerifier::Verify(std::string_view message,
                                 std::string_view signature) {}

}  // namespace reporting