// Copyright 2014 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_WEBCRYPTO_ALGORITHMS_EC_H_ #define COMPONENTS_WEBCRYPTO_ALGORITHMS_EC_H_ #include <stdint.h> #include "components/webcrypto/algorithm_implementation.h" namespace webcrypto { // Base class for an EC algorithm. Provides functionality for generating, // importing, and exporting keys. class EcAlgorithm : public AlgorithmImplementation { … }; } // namespace webcrypto #endif // COMPONENTS_WEBCRYPTO_ALGORITHMS_EC_H_