mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 18:14:08 +00:00

openssl/provider.h header is not part of OpenSSL 1.1.1 so do not include it when building with an older instance. Fixes: https://github.com/nodejs/node/issues/44722 PR-URL: https://github.com/nodejs/node/pull/44725 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
#include <assert.h>
|
|
#include <node.h>
|
|
|
|
#include <openssl/opensslv.h>
|
|
#if OPENSSL_VERSION_MAJOR >= 3
|
|
#include <openssl/provider.h>
|
|
#endif
|
|
|
|
namespace {
|
|
|
|
using v8::Array;
|
|
using v8::Context;
|
|
using v8::FunctionCallbackInfo;
|
|
using v8::Isolate;
|
|
using v8::Local;
|
|
using v8::Object;
|
|
using v8::String;
|
|
using v8::Value;
|
|
|
|
#if OPENSSL_VERSION_MAJOR >= 3
|
|
int collectProviders(OSSL_PROVIDER* provider, void* cbdata) {
|
|
static_cast<std::vector<OSSL_PROVIDER*>*>(cbdata)->push_back(provider);
|
|
return 1;
|
|
}
|
|
#endif
|
|
|
|
inline void GetProviders(const FunctionCallbackInfo<Value>& args) {
|
|
Isolate* isolate = args.GetIsolate();
|
|
std::vector<Local<Value>> arr = {};
|
|
#if OPENSSL_VERSION_MAJOR >= 3
|
|
std::vector<OSSL_PROVIDER*> providers;
|
|
OSSL_PROVIDER_do_all(nullptr, &collectProviders, &providers);
|
|
for (auto provider : providers) {
|
|
arr.push_back(
|
|
String::NewFromUtf8(isolate, OSSL_PROVIDER_get0_name(provider))
|
|
.ToLocalChecked());
|
|
}
|
|
#endif
|
|
args.GetReturnValue().Set(Array::New(isolate, arr.data(), arr.size()));
|
|
}
|
|
|
|
inline void Initialize(Local<Object> exports,
|
|
Local<Value> module,
|
|
Local<Context> context) {
|
|
NODE_SET_METHOD(exports, "getProviders", GetProviders);
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
NODE_MODULE_CONTEXT_AWARE(NODE_GYP_MODULE_NAME, Initialize)
|