summaryrefslogtreecommitdiffstats
path: root/tool/src/commands/mod.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-10-04 15:31:28 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-12-06 15:11:54 +0100
commit30b37711392468161817653211754601f4f52057 (patch)
tree4060e00c6a3a9d18ec759e95d954a77f389f7a57 /tool/src/commands/mod.rs
parent149f252e5d1f6e30869f7981622322ab345cd2fc (diff)
tool: Add packet decrypt that unwraps encryption containers.
Diffstat (limited to 'tool/src/commands/mod.rs')
-rw-r--r--tool/src/commands/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/commands/mod.rs b/tool/src/commands/mod.rs
index 37254db2..3ecd65ca 100644
--- a/tool/src/commands/mod.rs
+++ b/tool/src/commands/mod.rs
@@ -31,7 +31,7 @@ use crate::openpgp::serialize::padding::{
};
extern crate sequoia_store as store;
-mod decrypt;
+pub mod decrypt;
pub use self::decrypt::decrypt;
mod sign;
pub use self::sign::sign;