Mateusz Starzyk | de7a83d | 2021-07-14 12:39:14 +0200 | [diff] [blame] | 1 | Changes |
| 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 Starzyk | 3879c34 | 2021-08-23 10:56:06 +0200 | [diff] [blame] | 6 | postponed until now. |
Mateusz Starzyk | de7a83d | 2021-07-14 12:39:14 +0200 | [diff] [blame] | 7 | Implemented functions support chunked data input for both CCM and CCM* |
| 8 | algorithms. |