// 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_EC_SIGNATURE_CREATOR_H_ #define CRYPTO_EC_SIGNATURE_CREATOR_H_ #include <stdint.h> #include <memory> #include <string> #include <vector> #include "base/containers/span.h" #include "crypto/crypto_export.h" namespace crypto { class ECPrivateKey; class ECSignatureCreator; // Signs data using a bare private key (as opposed to a full certificate). // We need this class because SignatureCreator is hardcoded to use // RSAPrivateKey. class CRYPTO_EXPORT ECSignatureCreator { … }; } // namespace crypto #endif // CRYPTO_EC_SIGNATURE_CREATOR_H_