We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a109b9e commit 9f125e5Copy full SHA for 9f125e5
src/crypto/crypto_cipher.cc
@@ -1052,7 +1052,7 @@ void PublicKeyCipher::Cipher(const FunctionCallbackInfo<Value>& args) {
1052
if (!args[offset + 3]->IsUndefined()) {
1053
oaep_label = ArrayBufferOrViewContents<unsigned char>(args[offset + 3]);
1054
if (UNLIKELY(!oaep_label.CheckSizeInt32()))
1055
- return THROW_ERR_OUT_OF_RANGE(env, "oaep_label is too big");
+ return THROW_ERR_OUT_OF_RANGE(env, "oaepLabel is too big");
1056
}
1057
1058
std::unique_ptr<BackingStore> out;
0 commit comments