summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/backend/rust.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2022-08-15 12:20:28 +0200
committerJustus Winter <justus@sequoia-pgp.org>2022-08-15 12:20:28 +0200
commitca7e16e8aad5c77445905c088cedf41c881552a8 (patch)
tree6780f2d023bfb91153af7258b2cdada3b45c66bf /openpgp/src/crypto/backend/rust.rs
parentf6b267a25a0e4d59bdfdf0e066b4875e8484550d (diff)
openpgp: Avoid hardcoding EAX for memory encryption.
- Previously, we used EAX for memory encryption because it was supported by all cryptographic backends. However, this is problematic for OpenSSL, which doesn't support EAX. - Instead, have the backends provide a default algorithm to use that they support.
Diffstat (limited to 'openpgp/src/crypto/backend/rust.rs')
-rw-r--r--openpgp/src/crypto/backend/rust.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/openpgp/src/crypto/backend/rust.rs b/openpgp/src/crypto/backend/rust.rs
index dc4773ed..61784b2c 100644
--- a/openpgp/src/crypto/backend/rust.rs
+++ b/openpgp/src/crypto/backend/rust.rs
@@ -55,6 +55,15 @@ impl Curve {
}
impl AEADAlgorithm {
+ /// Returns the best AEAD mode supported by the backend.
+ ///
+ /// This SHOULD return OCB, which is the mandatory-to-implement
+ /// algorithm and the most performing one, but fall back to any
+ /// supported algorithm.
+ pub(crate) const fn const_default() -> AEADAlgorithm {
+ AEADAlgorithm::EAX
+ }
+
pub(crate) fn is_supported_by_backend(&self) -> bool {
use self::AEADAlgorithm::*;
match &self {