// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CRYPTO_SIGNATURE_VERIFIER_H_ #define CRYPTO_SIGNATURE_VERIFIER_H_ #include <stdint.h> #include <memory> #include <vector> #include "base/containers/span.h" #include "build/build_config.h" #include "crypto/crypto_export.h" namespace crypto { // The SignatureVerifier class verifies a signature using a bare public key // (as opposed to a certificate). class CRYPTO_EXPORT SignatureVerifier { … }; } // namespace crypto #endif // CRYPTO_SIGNATURE_VERIFIER_H_