// 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_AES_H_ #define COMPONENTS_WEBCRYPTO_ALGORITHMS_AES_H_ #include <stdint.h> #include <string_view> #include "components/webcrypto/algorithm_implementation.h" namespace webcrypto { // Base class for AES algorithms that provides the implementation for key // creation and export. class AesAlgorithm : public AlgorithmImplementation { … }; } // namespace webcrypto #endif // COMPONENTS_WEBCRYPTO_ALGORITHMS_AES_H_