From a783a16db3425054c0768d7909e7d92683b1ebad Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Mon, 18 Feb 2019 18:26:01 +0100 Subject: openpgp: Compute Keygrips. - Keygrips are a proprietary, protocol agnostic way to identify public keys used by GnuPG. - Fixes #195. --- openpgp/src/crypto/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'openpgp/src/crypto/mod.rs') 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; -- cgit v1.2.3