diff --git a/Cargo.lock b/Cargo.lock index ec7445f7c..c7fd1621b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12,6 +12,16 @@ dependencies = [ "generic-array", ] +[[package]] +name = "aead" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1973cfbc1a2daf9cf550e74e1f088c28e7f7d8c1e1418fb6c9dc5184b7e84c99" +dependencies = [ + "crypto-common 0.2.1", + "inout 0.2.2", +] + [[package]] name = "alloca" version = "0.4.0" @@ -129,7 +139,7 @@ dependencies = [ name = "boringtun" version = "0.7.0" dependencies = [ - "aead", + "aead 0.6.1", "base64", "blake2", "chacha20poly1305", @@ -246,7 +256,7 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" dependencies = [ - "aead", + "aead 0.5.2", "chacha20 0.9.0", "cipher", "poly1305", @@ -287,7 +297,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e" dependencies = [ "crypto-common 0.1.6", - "inout", + "inout 0.1.3", "zeroize", ] @@ -463,6 +473,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710" dependencies = [ "hybrid-array", + "rand_core 0.10.1", ] [[package]] @@ -689,6 +700,15 @@ dependencies = [ "generic-array", ] +[[package]] +name = "inout" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7" +dependencies = [ + "hybrid-array", +] + [[package]] name = "ip_network" version = "0.4.1" diff --git a/boringtun/Cargo.toml b/boringtun/Cargo.toml index 4482d7cf0..b76d5ec07 100644 --- a/boringtun/Cargo.toml +++ b/boringtun/Cargo.toml @@ -42,7 +42,7 @@ x25519-dalek = { version = "=3.0.0-rc.0", features = [ ] } rand = "0.10" chacha20poly1305 = "0.10.1" -aead = "0.5.2" +aead = "0.6.1" blake2 = "=0.11.0-rc.6" hmac = "0.13" typenum = "1.20.1"