summaryrefslogtreecommitdiffstats
path: root/openpgp/src/tpk/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/tpk/mod.rs')
-rw-r--r--openpgp/src/tpk/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/openpgp/src/tpk/mod.rs b/openpgp/src/tpk/mod.rs
index a1d3b33e..ef6bbf5c 100644
--- a/openpgp/src/tpk/mod.rs
+++ b/openpgp/src/tpk/mod.rs
@@ -17,7 +17,7 @@ use {
SignatureType,
HashAlgorithm,
packet::Tag,
- SecretKey,
+ packet::key::SecretKey,
packet::{signature, Signature},
packet::Key,
packet::UserID,
@@ -357,7 +357,7 @@ impl SubkeyBinding {
use packet::KeyFlags;
use constants::HashAlgorithm;
use SignatureType;
- use SecretKey;
+ use packet::key::SecretKey;
let mut sig = signature::Builder::new(SignatureType::SubkeyBinding);
@@ -478,7 +478,7 @@ impl UserIDBinding {
use packet::KeyFlags;
use constants::HashAlgorithm;
use SignatureType;
- use SecretKey;
+ use packet::key::SecretKey;
let mut sig = signature::Builder::new(SignatureType::PositiveCertificate);