summaryrefslogtreecommitdiffstats
path: root/tool/src/commands/decrypt.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-11-25 11:29:37 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-11-25 11:35:06 +0100
commit9c6174635ac40a32b273bf78493c1d6db3cc2d34 (patch)
tree6cb90209caa44931abe6061144af3cfbd61711e5 /tool/src/commands/decrypt.rs
parent6b3574906ed2cd647a6d4f8dcb3243e3dd0d5616 (diff)
openpgp: Rename openpgp::constants to openpgp::types.
- Fixes #381.
Diffstat (limited to 'tool/src/commands/decrypt.rs')
-rw-r--r--tool/src/commands/decrypt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/commands/decrypt.rs b/tool/src/commands/decrypt.rs
index 3e942fe4..095e247a 100644
--- a/tool/src/commands/decrypt.rs
+++ b/tool/src/commands/decrypt.rs
@@ -6,7 +6,7 @@ extern crate termsize;
extern crate sequoia_openpgp as openpgp;
use sequoia_core::Context;
-use crate::openpgp::constants::SymmetricAlgorithm;
+use crate::openpgp::types::SymmetricAlgorithm;
use crate::openpgp::conversions::hex;
use crate::openpgp::crypto::{self, SessionKey};
use crate::openpgp::{Fingerprint, TPK, KeyID, Result};