aboutsummaryrefslogtreecommitdiff
path: root/openssl/apps/enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/apps/enc.c')
-rw-r--r--openssl/apps/enc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/openssl/apps/enc.c b/openssl/apps/enc.c
index 719acc325..19ea3df94 100644
--- a/openssl/apps/enc.c
+++ b/openssl/apps/enc.c
@@ -331,6 +331,12 @@ bad:
setup_engine(bio_err, engine, 0);
#endif
+ if (cipher && EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER)
+ {
+ BIO_printf(bio_err, "AEAD ciphers not supported by the enc utility\n");
+ goto end;
+ }
+
if (md && (dgst=EVP_get_digestbyname(md)) == NULL)
{
BIO_printf(bio_err,"%s is an unsupported message digest type\n",md);