mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 01:29:17 +00:00
LibWeb: Implement most of ECDSA verify for SubtleCrypto
This commit is contained in:
parent
6906b7c1e6
commit
ae230c9150
Notes:
sideshowbarker
2024-07-16 20:21:48 +09:00
Author: https://github.com/stelar7
Commit: ae230c9150
Pull-request: https://github.com/SerenityOS/serenity/pull/23737
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/trflynn89
5 changed files with 156 additions and 1 deletions
|
@ -641,6 +641,7 @@ SupportedAlgorithmsMap supported_algorithms()
|
|||
|
||||
// https://w3c.github.io/webcrypto/#ecdsa
|
||||
define_an_algorithm<ECDSA, EcdsaParams>("sign"_string, "ECDSA"_string);
|
||||
define_an_algorithm<ECDSA, EcdsaParams>("verify"_string, "ECDSA"_string);
|
||||
define_an_algorithm<ECDSA, EcKeyGenParams>("generateKey"_string, "ECDSA"_string);
|
||||
|
||||
return internal_object;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue