Skip to content

Commit

Permalink
crypto: guard with OPENSSL_NO_GOST
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Oct 21, 2019
1 parent ce72cd7 commit d35b39e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_crypto.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2735,7 +2735,7 @@ void SSLWrap<Base>::GetSharedSigalgs(const FunctionCallbackInfo<Value>& args) {
case NID_ED448:
sig_with_md = "Ed448+";
break;

#ifndef OPENSSL_NO_GOST
case NID_id_GostR3410_2001:
sig_with_md = "gost2001+";
break;
Expand All @@ -2747,7 +2747,7 @@ void SSLWrap<Base>::GetSharedSigalgs(const FunctionCallbackInfo<Value>& args) {
case NID_id_GostR3410_2012_512:
sig_with_md = "gost2012_512+";
break;

#endif // !OPENSSL_NO_GOST
default:
const char* sn = OBJ_nid2sn(sign_nid);

Expand Down

0 comments on commit d35b39e

Please sign in to comment.