1
0
mirror of https://github.com/ARMmbed/mbedtls.git synced 2025-06-10 08:18:47 +08:00

Add changelog for chunked CCM implementation.

Signed-off-by: Mateusz Starzyk <mateusz.starzyk@mobica.com>
This commit is contained in:
Mateusz Starzyk 2021-07-14 12:39:14 +02:00
parent 27a1bef89d
commit de7a83da0d

View File

@ -0,0 +1,8 @@
Changes
* Implement multi-part CCM API.
The multi-part functions: mbedtls_ccm_starts(), mbedtls_ccm_set_lengths(),
mbedtls_ccm_update_ad(), mbedtls_ccm_update(), mbedtls_ccm_finish()
were introduced in mbedTLS 3.0 release, however their implementation was
postponed util now.
Implemented functions support chunked data input for both CCM and CCM*
algorithms.