From: Matt Caswell Date: Wed, 27 May 2020 10:50:05 +0000 (+0100) Subject: Make it clear that you can't use all ciphers for CMAC X-Git-Tag: openssl-3.0.0-alpha4~136 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5cff2df8cedd7b8185756df216f16a213fb22637;p=oweals%2Fopenssl.git Make it clear that you can't use all ciphers for CMAC Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/11972) --- diff --git a/doc/man3/EVP_PKEY_new.pod b/doc/man3/EVP_PKEY_new.pod index 3efab95671..ff5744bebd 100644 --- a/doc/man3/EVP_PKEY_new.pod +++ b/doc/man3/EVP_PKEY_new.pod @@ -96,7 +96,8 @@ B, B, B or B. EVP_PKEY_new_CMAC_key() works in the same way as EVP_PKEY_new_raw_private_key() except it is only for the B algorithm type. In addition to the raw private key data, it also takes a cipher algorithm to be used during -creation of a CMAC in the B argument. +creation of a CMAC in the B argument. The cipher should be a standard +encryption only cipher. For example AEAD and XTS ciphers should not be used. EVP_PKEY_new_mac_key() works in the same way as EVP_PKEY_new_raw_private_key(). New applications should use EVP_PKEY_new_raw_private_key() instead.