summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/mod.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-05-12 11:36:37 +0200
committerJustus Winter <justus@sequoia-pgp.org>2023-05-22 11:59:48 +0200
commit72db601361ab570d3f3c741ee941a562a0b3f885 (patch)
treed99fa4e083b45cc8854c1288334560bd8ba0bf67 /openpgp/src/crypto/mod.rs
parent8553d278249bd183517d8a497adb32144772ad50 (diff)
openpgp: Add asymmetric encryption trait.
- As first step, abstract over X25519.
Diffstat (limited to 'openpgp/src/crypto/mod.rs')
-rw-r--r--openpgp/src/crypto/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/crypto/mod.rs b/openpgp/src/crypto/mod.rs
index 30bf164b..74a5c860 100644
--- a/openpgp/src/crypto/mod.rs
+++ b/openpgp/src/crypto/mod.rs
@@ -31,7 +31,7 @@ use crate::{
pub(crate) mod aead;
mod asymmetric;
pub use self::asymmetric::{Signer, Decryptor, KeyPair};
-mod backend;
+pub(crate) mod backend;
pub mod ecdh;
pub mod hash;
pub mod mem;