summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/aead.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-10-17 13:47:38 +0200
committerJustus Winter <justus@sequoia-pgp.org>2018-10-23 16:25:05 +0200
commit194e2a8f63f38bd44340090f2fc121d4dcd24cd7 (patch)
treef1f523ca0af7074ffcc7332c3fbdf99cc028218c /openpgp/src/crypto/aead.rs
parenta876df938ad99ce7b0ba769a8e2ad961f12ba239 (diff)
openpgp: Move SessionKey into openpgp::crypto.
Diffstat (limited to 'openpgp/src/crypto/aead.rs')
-rw-r--r--openpgp/src/crypto/aead.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/crypto/aead.rs b/openpgp/src/crypto/aead.rs
index c464d33c..fab20771 100644
--- a/openpgp/src/crypto/aead.rs
+++ b/openpgp/src/crypto/aead.rs
@@ -15,7 +15,7 @@ use conversions::{
};
use Error;
use Result;
-use SessionKey;
+use crypto::SessionKey;
use secure_eq;
impl AEADAlgorithm {