summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@pep-project.org>2017-11-09 10:53:45 +0100
committerJustus Winter <justus@pep-project.org>2017-11-22 17:12:56 +0100
commite0f08ef8fc362175aaefadf729ba0b9d083c9829 (patch)
tree4e85d5653843b899bb445a6ab38c01dfd0b829b4 /src/lib.rs
parent5b72f710d3b65c2f04dcb84e4b489f55ac012096 (diff)
Assemble transferable public keys from messages.
- For now, no canonicalization is done. For that to happen we need to be able to access the packets fields, which are not public and there is no accessor.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 89507863..a69113c7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -11,5 +11,6 @@ extern crate flate2;
extern crate bzip2;
pub mod openpgp;
+pub mod keys;
pub mod key_store;
pub mod net;