Skip to content

Commit

Permalink
build(deps): update ring requirement from 0.16 to 0.17 (#2287)
Browse files Browse the repository at this point in the history
* build(deps): update ring requirement from 0.16 to 0.17

---
updated-dependencies:
- dependency-name: ring
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix output_len usage

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Cameron Bytheway <[email protected]>
  • Loading branch information
dependabot[bot] and camshaft authored Aug 27, 2024
1 parent 2869c19 commit acd3fe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quic/s2n-quic-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ zeroize = { version = "1", default-features = false, features = ["derive"] }
aws-lc-rs = { version = "1.6" }

[target.'cfg(target_os = "windows")'.dependencies]
ring = { version = "0.16", default-features = false }
ring = { version = "0.17", default-features = false }

[dev-dependencies]
hex-literal = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-crypto/src/cipher_suite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ macro_rules! impl_cipher_suite {

assert_eq!(
compute_vec_label(
$digest.hmac_algorithm().digest_algorithm().output_len,
$digest.hmac_algorithm().digest_algorithm().output_len(),
b"quic ku"
),
$key_update_label,
Expand Down

0 comments on commit acd3fe4

Please sign in to comment.