Skip to content

Commit

Permalink
crypto: use actual option name in error message
Browse files Browse the repository at this point in the history
oaep_label is the name of the C++ variable. Use oaepLabel instead, which
is the name of the documented option.

PR-URL: #44455
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: theanarkh <theratliter@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
tniessen authored and juanarbol committed Oct 10, 2022
1 parent dbfb1e3 commit 8764555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/crypto_cipher.cc
Expand Up @@ -1052,7 +1052,7 @@ void PublicKeyCipher::Cipher(const FunctionCallbackInfo<Value>& args) {
if (!args[offset + 3]->IsUndefined()) {
oaep_label = ArrayBufferOrViewContents<unsigned char>(args[offset + 3]);
if (UNLIKELY(!oaep_label.CheckSizeInt32()))
return THROW_ERR_OUT_OF_RANGE(env, "oaep_label is too big");
return THROW_ERR_OUT_OF_RANGE(env, "oaepLabel is too big");
}

std::unique_ptr<BackingStore> out;
Expand Down

0 comments on commit 8764555

Please sign in to comment.