blob: 67faecca5e9c19d934871d927fe1878acaa636ba [file] [log] [blame]
Mateusz Starzykde7a83d2021-07-14 12:39:14 +02001Changes
2 * Implement multi-part CCM API.
3 The multi-part functions: mbedtls_ccm_starts(), mbedtls_ccm_set_lengths(),
4 mbedtls_ccm_update_ad(), mbedtls_ccm_update(), mbedtls_ccm_finish()
5 were introduced in mbedTLS 3.0 release, however their implementation was
Mateusz Starzyk3879c342021-08-23 10:56:06 +02006 postponed until now.
Mateusz Starzykde7a83d2021-07-14 12:39:14 +02007 Implemented functions support chunked data input for both CCM and CCM*
8 algorithms.