Searched refs:mbedtls_gcm_starts (Results 1 – 7 of 7) sorted by relevance
/mbedtls-latest/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, 118 TEST_EQUAL(0, mbedtls_gcm_starts(ctx, mode, iv->x, iv->len)); 145 TEST_EQUAL(0, mbedtls_gcm_starts(ctx, mode, 165 TEST_EQUAL(starts_ret, mbedtls_gcm_starts(ctx, mode, iv, iv_len)); 483 TEST_EQUAL(0, mbedtls_gcm_starts(&ctx, mode, iv->x, iv->len));
|
/mbedtls-latest/library/ |
D | gcm.c | 377 int mbedtls_gcm_starts(mbedtls_gcm_context *ctx, in mbedtls_gcm_starts() function 718 if ((ret = mbedtls_gcm_starts(ctx, mode, iv, iv_len)) != 0) { in mbedtls_gcm_crypt_and_tag() 1161 ret = mbedtls_gcm_starts(&ctx, MBEDTLS_GCM_ENCRYPT, in mbedtls_gcm_self_test() 1243 ret = mbedtls_gcm_starts(&ctx, MBEDTLS_GCM_DECRYPT, in mbedtls_gcm_self_test()
|
D | psa_crypto_aead.c | 372 mbedtls_gcm_starts(&operation->ctx.gcm, in mbedtls_psa_aead_set_nonce()
|
D | cipher.c | 471 return mbedtls_gcm_starts((mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_set_iv()
|
/mbedtls-latest/include/mbedtls/ |
D | gcm.h | 235 int mbedtls_gcm_starts(mbedtls_gcm_context *ctx,
|
/mbedtls-latest/docs/ |
D | 3.0-migration-guide.md | 238 * `mbedtls_gcm_starts()` now only sets the mode and the nonce (IV). Call the new function `mbedtls_… 248 * `mbedtls_gcm_starts()` now only sets the mode and the nonce (IV). The new function `mbedtls_gcm_u…
|
/mbedtls-latest/ |
D | ChangeLog | 1599 * Fix a bug in mbedtls_gcm_starts() when the bit length of the iv 1712 no longer pass the associated data to mbedtls_gcm_starts(), but to the
|