summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-06-20 14:32:41 +0200
committerJustus Winter <justus@sequoia-pgp.org>2023-06-20 14:34:16 +0200
commitf221f595de184d5d45c1e9a2c80323dc0715b0a3 (patch)
tree70c72d43cbe0c1816f6f479b1078328818e4b455
parent46f1c7b1ce24bb027b907e0cc513d2fc3af41baa (diff)
openpgp: Fix backend selection.
-rw-r--r--openpgp/src/crypto/backend.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/openpgp/src/crypto/backend.rs b/openpgp/src/crypto/backend.rs
index 03c142ea..f69d0a10 100644
--- a/openpgp/src/crypto/backend.rs
+++ b/openpgp/src/crypto/backend.rs
@@ -30,6 +30,7 @@ pub use self::nettle::*;
not(all(feature = "__implicit-crypto-backend-for-tests",
any(feature = "crypto-openssl",
feature = "crypto-botan",
+ feature = "crypto-botan2",
feature = "crypto-rust")))))]
pub use self::nettle::Backend;
@@ -62,6 +63,7 @@ pub use self::cng::*;
any(feature = "crypto-nettle",
feature = "crypto-openssl",
feature = "crypto-botan",
+ feature = "crypto-botan2",
feature = "crypto-rust")))))]
pub use self::cng::Backend;