Searched refs:mbedtls_gcm_update (Results 1 – 7 of 7) sorted by relevance
/mbedtls-development/library/ |
A D | gcm.c | 422 int mbedtls_gcm_update( mbedtls_gcm_context *ctx, in mbedtls_gcm_update() function 594 if( ( ret = mbedtls_gcm_update( ctx, input, length, in mbedtls_gcm_crypt_and_tag() 1020 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test() 1029 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test() 1040 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test() 1093 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test() 1101 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test() 1112 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test()
|
A D | psa_crypto_aead.c | 514 mbedtls_gcm_update( &operation->ctx.gcm, in mbedtls_psa_aead_update()
|
A D | cipher.c | 582 return( mbedtls_gcm_update( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_update()
|
/mbedtls-development/tests/suites/ |
A D | test_suite_gcm.function | 38 TEST_EQUAL( 0, mbedtls_gcm_update( ctx, input->x, n1, output, n1, &olen ) ); 46 TEST_EQUAL( 0, mbedtls_gcm_update( ctx, input->x + n1, n2, output, n2, &olen ) ); 93 TEST_EQUAL( 0, mbedtls_gcm_update( ctx, input->x, input->len, output, input->len, &olen ) ); 125 TEST_EQUAL( 0, mbedtls_gcm_update( ctx, NULL, 0, NULL, 0, &olen ) ); 449 …TEST_EQUAL( MBEDTLS_ERR_GCM_BUFFER_TOO_SMALL, mbedtls_gcm_update( &ctx, input->x, input->len, outp…
|
/mbedtls-development/include/mbedtls/ |
A D | gcm.h | 314 int mbedtls_gcm_update( mbedtls_gcm_context *ctx,
|
/mbedtls-development/docs/ |
A D | 3.0-migration-guide.md | 218 * `mbedtls_gcm_update()` now takes an extra parameter to indicate the actual output length. In Mbed… 220 … call to `mbedtls_gcm_finish()` instead of returning it in the last call to `mbedtls_gcm_update()`. 228 * `mbedtls_gcm_update()` now allows arbitrary-length inputs, takes an extra parameter to indicate t… 230 …ta for the last partial block, to be returned in the next call to `mbedtls_gcm_update()` or `mbedt…
|
/mbedtls-development/ |
A D | ChangeLog | 62 mbedtls_gcm_update() now takes extra parameters for the output length. 64 call to mbedtls_gcm_update(), but alternative implementations activated 66 mbedtls_gcm_update() or mbedtls_gcm_finish(). Furthermore, applications 282 * The multi-part GCM interface (mbedtls_gcm_update() or
|
Completed in 16 milliseconds