summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-02-24 12:58:07 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-02-24 12:58:07 +0100
commit7bad43adccf679a7e1ff5a9b5885df00b408cac0 (patch)
tree32ddaa9a384f0e32c6652435a0c56c8ba67a800d
parent0ef02d41c33fa9fd7646c7f02c6fea007bbea9a6 (diff)
openpgp: Fix EdDSA key generation.
- Fixes #437.
-rw-r--r--Cargo.lock6
-rw-r--r--openpgp/Cargo.toml2
2 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c0e09b4e..4a12fb3a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1013,7 +1013,7 @@ dependencies = [
[[package]]
name = "nettle"
-version = "6.0.0"
+version = "6.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1663,7 +1663,7 @@ dependencies = [
"lalrpop-util 0.17.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"memsec 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)",
- "nettle 6.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "nettle 6.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"quickcheck 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -2357,7 +2357,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
"checksum native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e"
"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
-"checksum nettle 6.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "26d1a7a80eda11428ff0d34d853ddff7104f76a4a75af2e966cc3d9cfee31a0f"
+"checksum nettle 6.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6fd54cf3d08c0437fa65b09721983a87c447da440fb02b497292bdcab1632a4f"
"checksum nettle-src 3.5.1-2 (registry+https://github.com/rust-lang/crates.io-index)" = "fad3c0d4be23880e92170c10f009f1d4b0dd842a523dd8b35c89738fd3b640c8"
"checksum nettle-sys 2.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b8629333ff5f3b74d251dae253e383cda9242410fac4244a4fe855469be101fb"
"checksum new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index ae5641bd..d351d064 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -31,7 +31,7 @@ idna = "0.2"
lalrpop-util = "0.17"
lazy_static = "1.3"
memsec = "0.5.6"
-nettle = "6"
+nettle = "6.0.1"
quickcheck = { version = "0.9", default-features = false }
rand = { version = "0.7", default-features = false }
regex = "1"