summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-03-01 14:24:55 +0100
committerJustus Winter <justus@sequoia-pgp.org>2023-03-01 14:36:51 +0100
commit4f092252de3dbb806aae53e7d34de5d397266259 (patch)
treee312a91536acb34ee2006cf621979a75fa542f7c
parentace1e02b3a3a3729ceb437657e1a0c055ad217ce (diff)
openpgp: Don't assert that ElGamal is not supported in test.
-rw-r--r--openpgp/src/types/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/openpgp/src/types/mod.rs b/openpgp/src/types/mod.rs
index 50459a16..863880e5 100644
--- a/openpgp/src/types/mod.rs
+++ b/openpgp/src/types/mod.rs
@@ -204,7 +204,6 @@ impl PublicKeyAlgorithm {
///
/// assert!(PublicKeyAlgorithm::EdDSA.is_supported());
/// assert!(PublicKeyAlgorithm::RSAEncryptSign.is_supported());
- /// assert!(!PublicKeyAlgorithm::ElGamalEncrypt.is_supported());
/// assert!(!PublicKeyAlgorithm::Private(101).is_supported());
/// ```
pub fn is_supported(&self) -> bool {