CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/11/11 17:42:28
Modified files:
lib/libcrypto/man: CMAC_Init.3
Log message:
Fix a brainfart that happened to me in 2020:
It is impossible to use EVP_DigestInit_ex(3) for CMAC.
Besides, EVP_PKEY_CTX_new_id(3) does not produce an EVP_MD_CTX object.
Instead, mention the easiest way to actually get the job done
using EVP_PKEY_new_CMAC_key(3) and EVP_DigestSignInit(3).
OK tb@
