summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-09-25 10:45:08 +0200
committerJustus Winter <justus@sequoia-pgp.org>2023-09-26 13:39:58 +0200
commit84d4a728e52865e78b7112b43e7a8383435c0971 (patch)
treeeb3f27784ce16fe70c5d06236e37f29ca15bd611
parent42bc643075e9ec281432de0faed71fecfade5f1c (diff)
openpgp: Test for secret leaks during encryption and decryption.
-rw-r--r--openpgp/tests/secret-leak-detector.rs8
1 files changed, 2 insertions, 6 deletions
diff --git a/openpgp/tests/secret-leak-detector.rs b/openpgp/tests/secret-leak-detector.rs
index b5c4a55a..eb7be71b 100644
--- a/openpgp/tests/secret-leak-detector.rs
+++ b/openpgp/tests/secret-leak-detector.rs
@@ -207,10 +207,6 @@ mod leak_tests {
make_test!(test_encrypted);
make_test!(test_password);
make_test!(test_ed25519);
-
- // These find leaks in the RustCrypto backend, so we cannot enable
- // them yet:
- //
- //make_test!(test_aes_256_encryption);
- //make_test!(test_aes_256_decryption);
+ make_test!(test_aes_256_encryption);
+ make_test!(test_aes_256_decryption);
}