-
Notifications
You must be signed in to change notification settings - Fork 30.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
crypto: handle exceptions in hmac/hash.digest #12164
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,7 +100,8 @@ Hash.prototype.update = function update(data, encoding) { | |
|
||
Hash.prototype.digest = function digest(outputEncoding) { | ||
outputEncoding = outputEncoding || exports.DEFAULT_ENCODING; | ||
return this._handle.digest(outputEncoding); | ||
// Explicit conversion for backward compatibility | ||
return this._handle.digest(String(outputEncoding)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use |
||
}; | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3797,9 +3797,7 @@ void Hmac::HmacDigest(const FunctionCallbackInfo<Value>& args) { | |
|
||
enum encoding encoding = BUFFER; | ||
if (args.Length() >= 1) { | ||
encoding = ParseEncoding(env->isolate(), | ||
args[0]->ToString(env->isolate()), | ||
BUFFER); | ||
encoding = ParseEncoding(env->isolate(), args[0], BUFFER); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe leave a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I remember correctly, most functions just ignore invalid encoding values and use the default value instead. Currently, we are forcing the conversion to a string, but just because it is a string doesn't make it a valid encoding value. Adding a The above only applies to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @tniessen Still, if we drop
It looks that way, yes… maybe you could fix that up and drop the unused code bits? That also simplifies There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @addaleax You are right, I will add the
Is it okay to do that in a separate PR or will that create too much organizational overhead? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
That’s your call… you can also maintain multiple commits in a single PR, which may or may not be easier for you. :) I don’t think there are other open pull requests for this code that would generate merge conflicts, and everything we talked about (except maybe dropping There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will create a separate PR after this gets merged to avoid conflicts and keep it simple, thank you for your support :) |
||
} | ||
|
||
unsigned char* md_value = nullptr; | ||
|
@@ -3921,9 +3919,7 @@ void Hash::HashDigest(const FunctionCallbackInfo<Value>& args) { | |
|
||
enum encoding encoding = BUFFER; | ||
if (args.Length() >= 1) { | ||
encoding = ParseEncoding(env->isolate(), | ||
args[0]->ToString(env->isolate()), | ||
BUFFER); | ||
encoding = ParseEncoding(env->isolate(), args[0], BUFFER); | ||
} | ||
|
||
unsigned char md_value[EVP_MAX_MD_SIZE]; | ||
|
@@ -4201,10 +4197,8 @@ void Sign::SignFinal(const FunctionCallbackInfo<Value>& args) { | |
|
||
unsigned int len = args.Length(); | ||
enum encoding encoding = BUFFER; | ||
if (len >= 2 && args[1]->IsString()) { | ||
encoding = ParseEncoding(env->isolate(), | ||
args[1]->ToString(env->isolate()), | ||
BUFFER); | ||
if (len >= 2) { | ||
encoding = ParseEncoding(env->isolate(), args[1], BUFFER); | ||
} | ||
|
||
node::Utf8Value passphrase(env->isolate(), args[2]); | ||
|
@@ -4452,9 +4446,7 @@ void Verify::VerifyFinal(const FunctionCallbackInfo<Value>& args) { | |
|
||
enum encoding encoding = UTF8; | ||
if (args.Length() >= 3) { | ||
encoding = ParseEncoding(env->isolate(), | ||
args[2]->ToString(env->isolate()), | ||
UTF8); | ||
encoding = ParseEncoding(env->isolate(), args[2], UTF8); | ||
} | ||
|
||
ssize_t hlen = StringBytes::Size(env->isolate(), args[1], encoding); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Femto-nit: can you punctuate the comment?