summaryrefslogtreecommitdiffstats
path: root/openpgp/src/lib.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-11-26 14:48:57 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-11-26 14:48:57 +0100
commitf5f8a7b1b47d29c16083ba9d3dc5f88441376ea7 (patch)
treed5925f3513f4840da31057ad5c1ad78725d44cee /openpgp/src/lib.rs
parentb24d1c5a099e2c741cf724816d49b8dd7977e049 (diff)
openpgp: New type ID.
- ID is either a KeyID or a Fingerprint. - Fixes #282.
Diffstat (limited to 'openpgp/src/lib.rs')
-rw-r--r--openpgp/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/openpgp/src/lib.rs b/openpgp/src/lib.rs
index 603d0744..058af071 100644
--- a/openpgp/src/lib.rs
+++ b/openpgp/src/lib.rs
@@ -145,6 +145,8 @@ use crate::types::{
mod fingerprint;
mod keyid;
+mod id;
+pub use id::ID;
#[cfg(test)]
mod tests;