We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0415dd7 commit b7bdfd3Copy full SHA for b7bdfd3
src/node_crypto.cc
@@ -2735,7 +2735,7 @@ void SSLWrap<Base>::GetSharedSigalgs(const FunctionCallbackInfo<Value>& args) {
2735
case NID_ED448:
2736
sig_with_md = "Ed448+";
2737
break;
2738
-
+#ifndef OPENSSL_NO_GOST
2739
case NID_id_GostR3410_2001:
2740
sig_with_md = "gost2001+";
2741
@@ -2747,7 +2747,7 @@ void SSLWrap<Base>::GetSharedSigalgs(const FunctionCallbackInfo<Value>& args) {
2747
case NID_id_GostR3410_2012_512:
2748
sig_with_md = "gost2012_512+";
2749
2750
+#endif // !OPENSSL_NO_GOST
2751
default:
2752
const char* sn = OBJ_nid2sn(sign_nid);
2753
0 commit comments