summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/aead.rs
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2022-10-28 12:25:07 +0200
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2022-12-21 10:50:48 +0100
commit31564c1c6e5b5ff4ff3596bb755ba2f7395f83df (patch)
treebf453da95e34f2c0d9d8fda377238beef351bbbc /openpgp/src/crypto/aead.rs
parent620903fa33a3f2f3b2aa5ac0b5d4731251aee157 (diff)
openpgp: Check for supported AEAD ciphersuite in tests.
- Previously the AEAD roundtrip test checked supported symmetric ciphers and AEAD algorithms separately but only certain combinations of them are valid in some libraries. - See: https://openpgp-wg.gitlab.io/rfc4880bis/#name-preferred-aead-ciphersuites
Diffstat (limited to 'openpgp/src/crypto/aead.rs')
-rw-r--r--openpgp/src/crypto/aead.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/openpgp/src/crypto/aead.rs b/openpgp/src/crypto/aead.rs
index 6b35fec1..43a1aaad 100644
--- a/openpgp/src/crypto/aead.rs
+++ b/openpgp/src/crypto/aead.rs
@@ -832,17 +832,10 @@ mod tests {
.iter()
.filter(|algo| algo.is_supported()) {
- if cfg!(feature = "crypto-rust")
- && sym_algo == &SymmetricAlgorithm::Twofish {
- eprintln!("XXX: Skipping Twofish until Twofish \
- implements Clone");
- continue;
- }
-
for aead in [
AEADAlgorithm::EAX,
AEADAlgorithm::OCB,
- ].iter().filter(|algo| algo.is_supported()) {
+ ].iter().filter(|algo| algo.is_supported() && algo.supports_symmetric_algo(sym_algo)) {
let chunk_size = 64;
let mut key = vec![0; sym_algo.key_size().unwrap()];
crate::crypto::random(&mut key);