Skip to content

Commit acd3fe4

Browse files
build(deps): update ring requirement from 0.16 to 0.17 (#2287)
* 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] <support@github.com> * fix output_len usage --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cameron Bytheway <bytheway.cameron@gmail.com>
1 parent 2869c19 commit acd3fe4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

quic/s2n-quic-crypto/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ zeroize = { version = "1", default-features = false, features = ["derive"] }
2727
aws-lc-rs = { version = "1.6" }
2828

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

3232
[dev-dependencies]
3333
hex-literal = "0.4"

quic/s2n-quic-crypto/src/cipher_suite.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ macro_rules! impl_cipher_suite {
228228

229229
assert_eq!(
230230
compute_vec_label(
231-
$digest.hmac_algorithm().digest_algorithm().output_len,
231+
$digest.hmac_algorithm().digest_algorithm().output_len(),
232232
b"quic ku"
233233
),
234234
$key_update_label,

0 commit comments

Comments
 (0)