Searched refs:mbedtls_gcm_update (Results 1 – 8 of 8) sorted by relevance
/third_party/mbedtls/library/ |
D | gcm.c | 424 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()
|
D | psa_crypto_aead.c | 544 mbedtls_gcm_update( &operation->ctx.gcm, in mbedtls_psa_aead_update()
|
D | cipher.c | 562 return( mbedtls_gcm_update( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_update()
|
/third_party/mbedtls/tests/suites/ |
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…
|
/third_party/mbedtls/include/mbedtls/ |
D | gcm.h | 314 int mbedtls_gcm_update( mbedtls_gcm_context *ctx,
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | lws-genaes.c | 426 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/ |
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…
|
/third_party/mbedtls/ |
D | ChangeLog | 241 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
|