summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/backend/botan.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/crypto/backend/botan.rs')
-rw-r--r--openpgp/src/crypto/backend/botan.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/openpgp/src/crypto/backend/botan.rs b/openpgp/src/crypto/backend/botan.rs
index 3f1ab906..568802de 100644
--- a/openpgp/src/crypto/backend/botan.rs
+++ b/openpgp/src/crypto/backend/botan.rs
@@ -1,11 +1,14 @@
//! Implementation of Sequoia crypto API using the Botan cryptographic library.
-use crate::types::*;
+use crate::{
+ types::*,
+};
pub mod aead;
pub mod asymmetric;
pub mod ecdh;
pub mod hash;
+pub mod kdf;
pub mod symmetric;
pub struct Backend(());