Home
last modified time | relevance | path

Searched refs:mbedtls_gcm_update (Results 1 – 7 of 7) sorted by relevance

/mbedtls-development/library/
A Dgcm.c422 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 Dpsa_crypto_aead.c514 mbedtls_gcm_update( &operation->ctx.gcm, in mbedtls_psa_aead_update()
A Dcipher.c582 return( mbedtls_gcm_update( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_update()
/mbedtls-development/tests/suites/
A Dtest_suite_gcm.function38 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 Dgcm.h314 int mbedtls_gcm_update( mbedtls_gcm_context *ctx,
/mbedtls-development/docs/
A D3.0-migration-guide.md218 * `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 DChangeLog62 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