Index: components/webcrypto/algorithms/aes_kw.cc |
diff --git a/components/webcrypto/openssl/aes_kw_openssl.cc b/components/webcrypto/algorithms/aes_kw.cc |
similarity index 94% |
rename from components/webcrypto/openssl/aes_kw_openssl.cc |
rename to components/webcrypto/algorithms/aes_kw.cc |
index c2f6a4d4c6fc04a931dc50a61f426646c8e9f3ac..449f17b720a477effd7b0c2df3cb9d8594cde076 100644 |
--- a/components/webcrypto/openssl/aes_kw_openssl.cc |
+++ b/components/webcrypto/algorithms/aes_kw.cc |
@@ -2,16 +2,16 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include <vector> |
#include <openssl/evp.h> |
+#include <vector> |
#include "base/logging.h" |
#include "base/numerics/safe_math.h" |
#include "base/stl_util.h" |
+#include "components/webcrypto/algorithms/aes.h" |
+#include "components/webcrypto/algorithms/key.h" |
+#include "components/webcrypto/algorithms/util_openssl.h" |
#include "components/webcrypto/crypto_data.h" |
-#include "components/webcrypto/openssl/aes_algorithm_openssl.h" |
-#include "components/webcrypto/openssl/key_openssl.h" |
-#include "components/webcrypto/openssl/util_openssl.h" |
#include "components/webcrypto/status.h" |
#include "crypto/openssl_util.h" |
#include "crypto/scoped_openssl_types.h" |