mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibWeb: Always return a KeyAlgorithm
from RsaHashedKeyAlgorithm
The spec never mentions the possibility for the `hash` member of `RsaHashedKeyAlgorithm` to be a string, it should be a `KeyAlgorithm` object containing a `name` string member. Spec: https://w3c.github.io/webcrypto/#dfn-RsaHashedKeyAlgorithm
This commit is contained in:
parent
999f456ba4
commit
991cb8942d
Notes:
github-actions[bot]
2025-01-17 11:44:02 +00:00
Author: https://github.com/devgianlu
Commit: 991cb8942d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3252
Reviewed-by: https://github.com/gmta ✅
4 changed files with 529 additions and 528 deletions
|
@ -16,7 +16,7 @@
|
|||
);
|
||||
println(key.extractable);
|
||||
println(key.algorithm.name);
|
||||
println(key.algorithm.hash);
|
||||
println(key.algorithm.hash.name);
|
||||
println(key.algorithm.publicExponent);
|
||||
done();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue