Index: components/webcrypto/algorithms/sha.cc |
diff --git a/components/webcrypto/openssl/sha_openssl.cc b/components/webcrypto/algorithms/sha.cc |
similarity index 98% |
rename from components/webcrypto/openssl/sha_openssl.cc |
rename to components/webcrypto/algorithms/sha.cc |
index 18c687a31f5f522a161f00ede949a2f6e299bf65..f7d5dc1821a4e400c2129f6ee445a7baeaa6dae1 100644 |
--- a/components/webcrypto/openssl/sha_openssl.cc |
+++ b/components/webcrypto/algorithms/sha.cc |
@@ -2,15 +2,15 @@ |
// 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 <openssl/sha.h> |
+#include <vector> |
#include "base/logging.h" |
#include "base/stl_util.h" |
#include "components/webcrypto/algorithm_implementation.h" |
+#include "components/webcrypto/algorithms/util_openssl.h" |
#include "components/webcrypto/crypto_data.h" |
-#include "components/webcrypto/openssl/util_openssl.h" |
#include "components/webcrypto/status.h" |
#include "components/webcrypto/webcrypto_util.h" |
#include "crypto/openssl_util.h" |