summaryrefslogtreecommitdiffstats
path: root/openpgp
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp')
-rw-r--r--openpgp/src/crypto/mod.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/openpgp/src/crypto/mod.rs b/openpgp/src/crypto/mod.rs
index 081e7a0b..8df483e0 100644
--- a/openpgp/src/crypto/mod.rs
+++ b/openpgp/src/crypto/mod.rs
@@ -12,6 +12,7 @@ use crate::Result;
pub(crate) mod aead;
mod asymmetric;
+pub use self::asymmetric::{Signer, Decryptor, KeyPair};
pub(crate) mod ecdh;
pub mod hash;
mod keygrip;
@@ -23,12 +24,6 @@ pub use s2k::S2K;
pub mod sexp;
pub(crate) mod symmetric;
-pub use self::asymmetric::{
- Signer,
- Decryptor,
- KeyPair,
-};
-
/// Fills the given buffer with random data.
pub fn random<B: AsMut<[u8]>>(mut buf: B) {
Yarrow::default().random(buf.as_mut());