Index: components/webcrypto/algorithms/rsa.cc |
diff --git a/components/webcrypto/openssl/rsa_hashed_algorithm_openssl.cc b/components/webcrypto/algorithms/rsa.cc |
similarity index 99% |
rename from components/webcrypto/openssl/rsa_hashed_algorithm_openssl.cc |
rename to components/webcrypto/algorithms/rsa.cc |
index 1082639d4d31a6dd412f91fdaf3f02c9c1176ea1..70f5e39067abd4fb57c2e4df68a022ed836132a2 100644 |
--- a/components/webcrypto/openssl/rsa_hashed_algorithm_openssl.cc |
+++ b/components/webcrypto/algorithms/rsa.cc |
@@ -2,17 +2,17 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "components/webcrypto/openssl/rsa_hashed_algorithm_openssl.h" |
+#include "components/webcrypto/algorithms/rsa.h" |
#include <openssl/evp.h> |
#include "base/logging.h" |
#include "base/stl_util.h" |
+#include "components/webcrypto/algorithms/key.h" |
+#include "components/webcrypto/algorithms/util_openssl.h" |
#include "components/webcrypto/crypto_data.h" |
#include "components/webcrypto/generate_key_result.h" |
#include "components/webcrypto/jwk.h" |
-#include "components/webcrypto/openssl/key_openssl.h" |
-#include "components/webcrypto/openssl/util_openssl.h" |
#include "components/webcrypto/status.h" |
#include "components/webcrypto/webcrypto_util.h" |
#include "crypto/openssl_util.h" |