Searched refs:mbedtls_gcm_starts (Results 1 – 8 of 8) sorted by relevance
/third_party/mbedtls/tests/suites/ |
D | test_suite_gcm.function | 28 TEST_EQUAL( 0, mbedtls_gcm_starts( ctx, mode, 80 TEST_EQUAL( 0, mbedtls_gcm_starts( ctx, mode, 119 TEST_EQUAL( 0, mbedtls_gcm_starts( ctx, mode, iv->x, iv->len ) ); 147 TEST_EQUAL( 0, mbedtls_gcm_starts( ctx, mode, 446 TEST_EQUAL( 0, mbedtls_gcm_starts( &ctx, mode, iv->x, iv->len ) );
|
/third_party/mbedtls/include/mbedtls/ |
D | gcm.h | 234 int mbedtls_gcm_starts( mbedtls_gcm_context *ctx,
|
/third_party/mbedtls/library/ |
D | gcm.c | 248 int mbedtls_gcm_starts( mbedtls_gcm_context *ctx, in mbedtls_gcm_starts() function 590 if( ( ret = mbedtls_gcm_starts( ctx, mode, iv, iv_len ) ) != 0 ) in mbedtls_gcm_crypt_and_tag() 1007 ret = mbedtls_gcm_starts( &ctx, MBEDTLS_GCM_ENCRYPT, in mbedtls_gcm_self_test() 1081 ret = mbedtls_gcm_starts( &ctx, MBEDTLS_GCM_DECRYPT, in mbedtls_gcm_self_test()
|
D | psa_crypto_aead.c | 402 mbedtls_gcm_starts( &operation->ctx.gcm, in mbedtls_psa_aead_set_nonce()
|
D | cipher.c | 401 return( mbedtls_gcm_starts( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_set_iv()
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | lws-genaes.c | 402 n = mbedtls_gcm_starts(&ctx->u.ctx_gcm, (int)ctx->op, in lws_genaes_crypt() 409 n = mbedtls_gcm_starts(&ctx->u.ctx_gcm, (int)ctx->op, in lws_genaes_crypt()
|
/third_party/mbedtls/docs/ |
D | 3.0-migration-guide.md | 217 * `mbedtls_gcm_starts()` now only sets the mode and the nonce (IV). Call the new function `mbedtls_… 227 * `mbedtls_gcm_starts()` now only sets the mode and the nonce (IV). The new function `mbedtls_gcm_u…
|
/third_party/mbedtls/ |
D | ChangeLog | 133 * Fix a bug in mbedtls_gcm_starts() when the bit length of the iv 246 no longer pass the associated data to mbedtls_gcm_starts(), but to the
|