Skip to content

Commit f7fd2ec

Browse files
committed
squash: move NewRootCertStore to crypto_context.h
1 parent 0ab510b commit f7fd2ec

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/crypto/crypto_context.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,9 @@ int SSL_CTX_use_certificate_chain(SSL_CTX* ctx,
187187
issuer);
188188
}
189189

190-
static X509_STORE* NewRootCertStore() {
190+
} // namespace
191+
192+
X509_STORE* NewRootCertStore() {
191193
static std::vector<X509*> root_certs_vector;
192194
static Mutex root_certs_vector_mutex;
193195
Mutex::ScopedLock lock(root_certs_vector_mutex);
@@ -228,7 +230,6 @@ static X509_STORE* NewRootCertStore() {
228230

229231
return store;
230232
}
231-
} // namespace
232233

233234
void GetRootCertificates(const FunctionCallbackInfo<Value>& args) {
234235
Environment* env = Environment::GetCurrent(args);

src/crypto/crypto_context.h

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ void GetRootCertificates(
2121
void IsExtraRootCertsFileLoaded(
2222
const v8::FunctionCallbackInfo<v8::Value>& args);
2323

24+
X509_STORE* NewRootCertStore();
25+
2426
class SecureContext final : public BaseObject {
2527
public:
2628
~SecureContext() override;

test/cctest/test_node_crypto.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// and settting it to a file that does not exist.
33
#define NODE_OPENSSL_SYSTEM_CERT_PATH "/missing/ca.pem"
44

5-
#include "../../src/crypto/crypto_context.cc" // NOLINT(build/include)
5+
#include "crypto/crypto_context.h"
66
#include "node_options.h"
77
#include "openssl/err.h"
88
#include "gtest/gtest.h"

0 commit comments

Comments
 (0)