mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Implement PBKDF2 deriveBits for SubtleCrypto
This commit is contained in:
parent
daf2c4ce46
commit
19bb62d60e
Notes:
sideshowbarker
2024-07-17 11:29:41 +09:00
Author: https://github.com/stelar7
Commit: 19bb62d60e
Pull-request: https://github.com/SerenityOS/serenity/pull/23834
Reviewed-by: https://github.com/ADKaster ✅
5 changed files with 121 additions and 10 deletions
|
@ -676,7 +676,7 @@ SupportedAlgorithmsMap supported_algorithms()
|
|||
|
||||
// https://w3c.github.io/webcrypto/#pbkdf2
|
||||
define_an_algorithm<PBKDF2>("importKey"_string, "PBKDF2"_string);
|
||||
// FIXME: define_an_algorithm("deriveBits"_string, "PBKDF2"_string, "Pbkdf2Params"_string);
|
||||
define_an_algorithm<PBKDF2, PBKDF2Params>("deriveBits"_string, "PBKDF2"_string);
|
||||
// FIXME: define_an_algorithm("get key length"_string, "PBKDF2"_string, ""_string);
|
||||
|
||||
// https://w3c.github.io/webcrypto/#rsa-oaep
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue