Home
last modified time | relevance | path

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

/third_party/mbedtls/library/
Dgcm.c424 int mbedtls_gcm_update( mbedtls_gcm_context *ctx, in mbedtls_gcm_update() function
596 if( ( ret = mbedtls_gcm_update( ctx, input, length, in mbedtls_gcm_crypt_and_tag()
1022 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test()
1031 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test()
1042 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test()
1095 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test()
1103 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test()
1114 ret = mbedtls_gcm_update( &ctx, in mbedtls_gcm_self_test()
Dpsa_crypto_aead.c544 mbedtls_gcm_update( &operation->ctx.gcm, in mbedtls_psa_aead_update()
Dcipher.c562 return( mbedtls_gcm_update( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_update()
/third_party/mbedtls/tests/suites/
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…
/third_party/mbedtls/include/mbedtls/
Dgcm.h314 int mbedtls_gcm_update( mbedtls_gcm_context *ctx,
/third_party/libwebsockets/lib/tls/mbedtls/
Dlws-genaes.c426 n = mbedtls_gcm_update(&ctx->u.ctx_gcm, in, len, out, len, &al); in lws_genaes_crypt()
429 n = mbedtls_gcm_update(&ctx->u.ctx_gcm, len, in, out); in lws_genaes_crypt()
/third_party/mbedtls/docs/
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…
/third_party/mbedtls/
DChangeLog241 mbedtls_gcm_update() now takes extra parameters for the output length.
243 call to mbedtls_gcm_update(), but alternative implementations activated
245 mbedtls_gcm_update() or mbedtls_gcm_finish(). Furthermore, applications
461 * The multi-part GCM interface (mbedtls_gcm_update() or