| Index: crypto/rsa_private_key.cc
|
| diff --git a/crypto/rsa_private_key.cc b/crypto/rsa_private_key.cc
|
| index 19d72438026abd87b08772f3ed2f66a6eb3c5728..075f5e40416bd301a3432fcc573ce74015026598 100644
|
| --- a/crypto/rsa_private_key.cc
|
| +++ b/crypto/rsa_private_key.cc
|
| @@ -4,11 +4,6 @@
|
|
|
| #include "crypto/rsa_private_key.h"
|
|
|
| -#include <openssl/bn.h>
|
| -#include <openssl/bytestring.h>
|
| -#include <openssl/evp.h>
|
| -#include <openssl/mem.h>
|
| -#include <openssl/rsa.h>
|
| #include <stdint.h>
|
|
|
| #include <memory>
|
| @@ -16,6 +11,11 @@
|
|
|
| #include "base/logging.h"
|
| #include "crypto/openssl_util.h"
|
| +#include "third_party/boringssl/src/include/openssl/bn.h"
|
| +#include "third_party/boringssl/src/include/openssl/bytestring.h"
|
| +#include "third_party/boringssl/src/include/openssl/evp.h"
|
| +#include "third_party/boringssl/src/include/openssl/mem.h"
|
| +#include "third_party/boringssl/src/include/openssl/rsa.h"
|
|
|
| namespace crypto {
|
|
|
|
|