summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/asymmetric.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-03-06 12:39:07 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-03-09 18:09:19 +0100
commit58d662c6d37dd1b0dccd4d0ce30290b8ede408e9 (patch)
treeab850355c6bcded1cba184db98263908736f1fc4 /openpgp/src/crypto/asymmetric.rs
parentf484efee5bf61f7ce90d5383ba2f589fe03ae518 (diff)
openpgp: Update nettle to 7.0.0.
Diffstat (limited to 'openpgp/src/crypto/asymmetric.rs')
-rw-r--r--openpgp/src/crypto/asymmetric.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/crypto/asymmetric.rs b/openpgp/src/crypto/asymmetric.rs
index aedf1ab8..5948f71c 100644
--- a/openpgp/src/crypto/asymmetric.rs
+++ b/openpgp/src/crypto/asymmetric.rs
@@ -1,6 +1,6 @@
//! Asymmetric crypt operations.
-use nettle::{dsa, ecc, ecdsa, ed25519, rsa, Yarrow};
+use nettle::{dsa, ecc, ecdsa, ed25519, rsa, random::Yarrow};
use crate::packet::{self, key, Key};
use crate::crypto::SessionKey;