Searched refs:mbedtls_ccm_update (Results 1 – 6 of 6) sorted by relevance
/mbedtls-development/ChangeLog.d/ |
A D | chunked_ccm.txt | 4 mbedtls_ccm_update_ad(), mbedtls_ccm_update(), mbedtls_ccm_finish()
|
/mbedtls-development/tests/suites/ |
A D | test_suite_ccm.function | 37 TEST_EQUAL( 0, mbedtls_ccm_update( ctx, input->x, n1, output, n1, &olen ) ); 45 TEST_EQUAL( 0, mbedtls_ccm_update( ctx, input->x + n1, n2, output, n2, &olen ) ); 248 TEST_EQUAL( 0, mbedtls_ccm_update( &ctx, msg->x, msg->len, output, msg->len, &olen ) ); 503 TEST_EQUAL( 0, mbedtls_ccm_update( &ctx, msg->x, msg->len, output, result->len, &olen ) ); 610 …TEST_EQUAL( MBEDTLS_ERR_CCM_BAD_INPUT, mbedtls_ccm_update( &ctx, msg->x, msg->len, output, msg->le… 715 mbedtls_ccm_update( &ctx, msg->x, msg->len, output, msg->len, &olen ) ); 742 TEST_EQUAL( 0, mbedtls_ccm_update( &ctx, msg->x, msg->len - 1, output, msg->len, &olen ) ); 776 TEST_EQUAL( 0, mbedtls_ccm_update( &ctx, msg->x, msg->len, output, msg->len, &olen ) ); 779 mbedtls_ccm_update( &ctx, msg->x, 1, output, 1, &olen ) ); 811 TEST_EQUAL( 0, mbedtls_ccm_update( &ctx, msg->x, msg->len - 1, output, msg->len + 1, &olen ) ); [all …]
|
/mbedtls-development/include/mbedtls/ |
A D | ccm.h | 479 int mbedtls_ccm_update( mbedtls_ccm_context *ctx,
|
/mbedtls-development/library/ |
A D | ccm.c | 340 int mbedtls_ccm_update( mbedtls_ccm_context *ctx, in mbedtls_ccm_update() function 506 if( ( ret = mbedtls_ccm_update( ctx, input, length, in ccm_auth_crypt()
|
A D | cipher.c | 591 return( mbedtls_ccm_update( (mbedtls_ccm_context *) ctx->cipher_ctx, in mbedtls_cipher_update()
|
/mbedtls-development/docs/ |
A D | 3.0-migration-guide.md | 510 `mbedtls_ccm_update_ad()`, `mbedtls_ccm_update()` and `mbedtls_ccm_finish()`.
|
Completed in 10 milliseconds