Skip to content

Commit 6e93c17

Browse files
codebyteretargos
authored andcommittedJun 11, 2021
crypto: use EVP_get_cipherbynid directly
PR-URL: #38901 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 03e75fd commit 6e93c17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/crypto/crypto_cipher.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void GetCipherInfo(const FunctionCallbackInfo<Value>& args) {
6262
cipher = EVP_get_cipherbyname(*name);
6363
} else {
6464
int nid = args[1].As<Int32>()->Value();
65-
cipher = EVP_get_cipherbyname(OBJ_nid2sn(nid));
65+
cipher = EVP_get_cipherbynid(nid);
6666
}
6767

6868
if (cipher == nullptr)

0 commit comments

Comments
 (0)