mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-09 09:34:57 +09:00
LibWeb: Implement the importKey algorithm for Ed25519
This commit is contained in:
parent
8cb371b2ce
commit
4d25369f29
Notes:
github-actions[bot]
2024-11-24 22:29:42 +00:00
Author: https://github.com/awesomekling
Commit: 4d25369f29
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2555
Reviewed-by: https://github.com/alimpfard ✅
Reviewed-by: https://github.com/gmta ✅
Reviewed-by: https://github.com/stelar7
6 changed files with 526 additions and 266 deletions
|
@ -37,7 +37,7 @@ constexpr static Array<int, 7>
|
|||
ed25519_oid { 1, 3, 101, 112 },
|
||||
ed448_oid { 1, 3, 101, 113 };
|
||||
|
||||
constexpr static Array<Array<int, 7>, 10> known_algorithm_identifiers {
|
||||
constexpr static Array<Array<int, 7>, 11> known_algorithm_identifiers {
|
||||
rsa_encryption_oid,
|
||||
rsa_md5_encryption_oid,
|
||||
rsa_sha1_encryption_oid,
|
||||
|
@ -47,7 +47,8 @@ constexpr static Array<Array<int, 7>, 10> known_algorithm_identifiers {
|
|||
ecdsa_with_sha256_encryption_oid,
|
||||
ecdsa_with_sha384_encryption_oid,
|
||||
ec_public_key_encryption_oid,
|
||||
x25519_oid
|
||||
x25519_oid,
|
||||
ed25519_oid,
|
||||
};
|
||||
|
||||
constexpr static Array<int, 7>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue