| Index: components/webcrypto/algorithms/rsa_sign.cc
|
| diff --git a/components/webcrypto/algorithms/rsa_sign.cc b/components/webcrypto/algorithms/rsa_sign.cc
|
| index 609ecbaf26d03089f07b3bddc36d0ecd65545d70..af28061db78ba48433a72009c9e5af2aa4f955c2 100644
|
| --- a/components/webcrypto/algorithms/rsa_sign.cc
|
| +++ b/components/webcrypto/algorithms/rsa_sign.cc
|
| @@ -2,9 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include <openssl/digest.h>
|
| -#include <openssl/evp.h>
|
| -#include <openssl/rsa.h>
|
| #include <stddef.h>
|
|
|
| #include "base/numerics/safe_math.h"
|
| @@ -15,6 +12,9 @@
|
| #include "components/webcrypto/status.h"
|
| #include "crypto/openssl_util.h"
|
| #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h"
|
| +#include "third_party/boringssl/src/include/openssl/digest.h"
|
| +#include "third_party/boringssl/src/include/openssl/evp.h"
|
| +#include "third_party/boringssl/src/include/openssl/rsa.h"
|
|
|
| namespace webcrypto {
|
|
|
|
|