mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Implement AES-GCM support for subtlecrypto (#34269)
* Support normalizing AES-GCM for encryption Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Implement "encrypt" operation for AES-GCM Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Allow importing AES-GCM keys Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Implement AES-GCM decryption Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Allow normalizing AES-GCM for "generate key" Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Update WPT expectations Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * fmt Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Fix clippy errors Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Remove silly checks Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Support AES-GCM 128-bit encryption with 128 bit IV Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Support AES-GCM with wrapKey/unwrapKey Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Update WPT expectations (again) Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> --------- Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
This commit is contained in:
parent
5113147f80
commit
83f8e88818
13 changed files with 1168 additions and 13478 deletions
|
@ -29,6 +29,7 @@ serde_json = { workspace = true }
|
|||
[dependencies]
|
||||
aes = { workspace = true }
|
||||
aes-kw = { workspace = true }
|
||||
aes-gcm = { workspace = true }
|
||||
accountable-refcell = { workspace = true, optional = true }
|
||||
app_units = { workspace = true }
|
||||
arrayvec = { workspace = true }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue