Remove irrelevant documentation notes

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney 2024-06-17 16:50:32 +01:00
parent 25bcf27c1a
commit 75246c0bea
2 changed files with 0 additions and 11 deletions

View File

@ -2483,11 +2483,6 @@
* Enable the CMAC (Cipher-based Message Authentication Code) mode for block
* ciphers.
*
* \note When the underlying implementation of the CMAC algorithm is provided
* by an alternate implementation, that alternate implementation may opt
* to not support AES-192 or 3DES as underlying block ciphers for the CMAC
* operation.
*
* Module: library/cmac.c
*
* Requires: MBEDTLS_CIPHER_C, MBEDTLS_AES_C or MBEDTLS_DES_C

View File

@ -79,12 +79,6 @@ struct mbedtls_cmac_context_t {
* To start a CMAC computation using the same key as a previous
* CMAC computation, use mbedtls_cipher_cmac_finish().
*
* \note When the CMAC implementation is supplied by an alternate
* implementation (through a PSA driver), some ciphers
* may not be supported by that implementation, and thus
* return an error. Alternate implementations must support
* AES-128 and AES-256, and may support AES-192 and 3DES.
*
* \param ctx The cipher context used for the CMAC operation, initialized
* as one of the following types: MBEDTLS_CIPHER_AES_128_ECB,
* MBEDTLS_CIPHER_AES_192_ECB, MBEDTLS_CIPHER_AES_256_ECB,