mirror of
https://github.com/servo/servo.git
synced 2025-10-01 09:09:15 +01:00
crypto: Add support for AES-CTR operations (#33963)
* Add support for AES-CTR operations Signed-off-by: Daniel Adams <msub2official@gmail.com> * Update expectations Signed-off-by: Daniel Adams <msub2official@gmail.com> * clippy Signed-off-by: Daniel Adams <msub2official@gmail.com> * Consolidate encrypt/decrypt for AES-CTR Signed-off-by: Daniel Adams <msub2official@gmail.com> * Update expectations Signed-off-by: Daniel Adams <msub2official@gmail.com> --------- Signed-off-by: Daniel Adams <msub2official@gmail.com>
This commit is contained in:
parent
1c26c0335e
commit
7b392db02f
17 changed files with 339 additions and 9646 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -1362,6 +1362,15 @@ dependencies = [
|
|||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "ctr"
|
||||
version = "0.9.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
||||
dependencies = [
|
||||
"cipher",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cursor-icon"
|
||||
version = "1.1.0"
|
||||
|
@ -6065,6 +6074,7 @@ dependencies = [
|
|||
"cookie 0.18.1",
|
||||
"crossbeam-channel",
|
||||
"cssparser",
|
||||
"ctr",
|
||||
"data-url",
|
||||
"deny_public_fields",
|
||||
"devtools_traits",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue