summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/mod.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-02-18 18:26:01 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-02-18 18:36:04 +0100
commita783a16db3425054c0768d7909e7d92683b1ebad (patch)
tree535a7143b8d62369ec7a8be7732c5c0493dded46 /openpgp/src/crypto/mod.rs
parent8a02ecd113ec4e14effd522ea0c51fbc691b0291 (diff)
openpgp: Compute Keygrips.
- Keygrips are a proprietary, protocol agnostic way to identify public keys used by GnuPG. - Fixes #195.
Diffstat (limited to 'openpgp/src/crypto/mod.rs')
-rw-r--r--openpgp/src/crypto/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/openpgp/src/crypto/mod.rs b/openpgp/src/crypto/mod.rs
index c0f514dd..9259611b 100644
--- a/openpgp/src/crypto/mod.rs
+++ b/openpgp/src/crypto/mod.rs
@@ -15,6 +15,8 @@ pub(crate) mod aead;
mod asymmetric;
pub(crate) mod ecdh;
mod hash;
+mod keygrip;
+pub use self::keygrip::Keygrip;
pub mod mpis;
pub mod s2k;
pub(crate) mod symmetric;