0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 03:52:17 +02:00

Update snow to 0.9.5

Update snow to include a fix for a DoS opportunity in the latest
release.

Thank you to Joe Doyle and Jim Miller from Trail of Bits for bringing
this to our attention.
This commit is contained in:
Alex Konradi 2024-01-25 09:25:25 -05:00
parent 40b0965dd6
commit 638d81c5c0
6 changed files with 8 additions and 8 deletions

4
Cargo.lock generated
View File

@ -3216,9 +3216,9 @@ checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
[[package]]
name = "snow"
version = "0.9.4"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58021967fd0a5eeeb23b08df6cc244a4d4a5b4aec1d27c9e02fad1a58b4cd74e"
checksum = "2e87c18a6608909007e75a60e04d03eda77b601c94de1c74d9a9dc2c04ab789a"
dependencies = [
"aes-gcm",
"blake2",

View File

@ -5998,7 +5998,7 @@ SOFTWARE.
<h3 id="MIT">MIT License</h3>
<h4>Used by:</h4>
<ul class="license-used-by">
<li><a href="https://github.com/mcginty/snow">snow 0.9.4</a></li>
<li><a href="https://github.com/mcginty/snow">snow 0.9.5</a></li>
</ul>
<pre class="license-text">MIT License

View File

@ -5566,7 +5566,7 @@ SOFTWARE.
```
## snow 0.9.4
## snow 0.9.5
```
MIT License

View File

@ -6115,7 +6115,7 @@ SOFTWARE.
<key>License</key>
<string>MIT License</string>
<key>Title</key>
<string>snow 0.9.4</string>
<string>snow 0.9.5</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>

View File

@ -29,7 +29,7 @@ rand_core = { version = "0.6", features = ["getrandom"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
sha2 = "0.10"
snow = { version = "0.9.3", default-features = false }
snow = { version = "0.9.5", default-features = false }
static_assertions = "1.1"
subtle = "2.5"
uuid = "1.1.2"
@ -37,7 +37,7 @@ variant_count = "1.1"
x25519-dalek = "2.0.0"
[dev-dependencies]
snow = { version = "0.9.3", features = ["default-resolver"] }
snow = { version = "0.9.5", features = ["default-resolver"] }
[build-dependencies]
prost-build = "0.12"

View File

@ -51,7 +51,7 @@ assert_matches = "1.5.0"
clap = { version = "4.4.11", features = ["derive"] }
env_logger = "0.10.0"
nonzero_ext = "0.3.0"
snow = "0.9.3"
snow = "0.9.5"
tokio = { version = "1", features = ["test-util", "rt-multi-thread"] }
tokio-stream = "0.1.14"
url = "2.4.1"