Searched refs:mbedtls_gcm_update_ad (Results 1 – 8 of 8) sorted by relevance
/third_party/mbedtls/tests/suites/ |
D | test_suite_gcm.function | 30 TEST_EQUAL( 0, mbedtls_gcm_update_ad( ctx, add->x, n1_add ) ); 31 TEST_EQUAL( 0, mbedtls_gcm_update_ad( ctx, add->x + n1_add, n2_add ) ); 85 TEST_EQUAL( 0, mbedtls_gcm_update_ad( ctx, NULL, 0 ) ); 120 TEST_EQUAL( 0, mbedtls_gcm_update_ad( ctx, add->x, add->len ) );
|
/third_party/mbedtls/include/mbedtls/ |
D | gcm.h | 259 int mbedtls_gcm_update_ad( mbedtls_gcm_context *ctx,
|
/third_party/mbedtls/library/ |
D | gcm.c | 331 int mbedtls_gcm_update_ad( mbedtls_gcm_context *ctx, in mbedtls_gcm_update_ad() function 593 if( ( ret = mbedtls_gcm_update_ad( ctx, add, add_len ) ) != 0 ) in mbedtls_gcm_crypt_and_tag() 1013 ret = mbedtls_gcm_update_ad( &ctx, in mbedtls_gcm_self_test() 1086 ret = mbedtls_gcm_update_ad( &ctx, in mbedtls_gcm_self_test()
|
D | psa_crypto_aead.c | 492 mbedtls_gcm_update_ad( &operation->ctx.gcm, input, input_length ) ); in mbedtls_psa_aead_update_ad()
|
D | cipher.c | 483 return( mbedtls_gcm_update_ad( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_update_ad()
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | lws-genaes.c | 406 n = mbedtls_gcm_update_ad(&ctx->u.ctx_gcm, in lws_genaes_crypt()
|
/third_party/mbedtls/docs/ |
D | 3.0-migration-guide.md | 217 …now only sets the mode and the nonce (IV). Call the new function `mbedtls_gcm_update_ad()` to pass… 227 …s()` now only sets the mode and the nonce (IV). The new function `mbedtls_gcm_update_ad()` receive…
|
/third_party/mbedtls/ |
D | ChangeLog | 247 new function mbedtls_gcm_update_ad(). 465 multiple calls to mbedtls_gcm_update_ad().
|