chromium/components/reporting/encryption/verification.h

// 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.

#ifndef COMPONENTS_REPORTING_ENCRYPTION_VERIFICATION_H_
#define COMPONENTS_REPORTING_ENCRYPTION_VERIFICATION_H_

#include <string>
#include <string_view>

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

namespace reporting {

// Helper class that verifies an Ed25519 signed message received from
// the server. It uses boringssl implementation available on the client.
class SignatureVerifier {};
}  // namespace reporting

#endif  // COMPONENTS_REPORTING_ENCRYPTION_VERIFICATION_H_