Searched refs:mbedtls_gcm_finish (Results 1 – 7 of 7) sorted by relevance
/mbedtls-latest/library/ |
D | gcm.c | 650 int mbedtls_gcm_finish(mbedtls_gcm_context *ctx, in mbedtls_gcm_finish() function 731 if ((ret = mbedtls_gcm_finish(ctx, NULL, 0, &olen, tag, tag_len)) != 0) { in mbedtls_gcm_crypt_and_tag() 1211 ret = mbedtls_gcm_finish(&ctx, NULL, 0, &olen, tag_buf, 16); in mbedtls_gcm_self_test() 1291 ret = mbedtls_gcm_finish(&ctx, NULL, 0, &olen, tag_buf, 16); in mbedtls_gcm_self_test()
|
D | cipher.c | 1207 return mbedtls_gcm_finish((mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_write_tag() 1264 if (0 != (ret = mbedtls_gcm_finish( in mbedtls_cipher_check_tag()
|
D | psa_crypto_aead.c | 568 mbedtls_gcm_finish(&operation->ctx.gcm, in mbedtls_psa_aead_finish()
|
/mbedtls-latest/tests/suites/ |
D | test_suite_gcm.function | 53 TEST_EQUAL(0, mbedtls_gcm_finish(ctx, NULL, 0, &olen, output, tag->len)); 99 TEST_EQUAL(0, mbedtls_gcm_finish(ctx, NULL, 0, &olen, output, tag->len)); 128 TEST_EQUAL(0, mbedtls_gcm_finish(ctx, NULL, 0, &olen, 148 TEST_EQUAL(0, mbedtls_gcm_finish(ctx, NULL, 0, &olen, output, tag->len));
|
/mbedtls-latest/include/mbedtls/ |
D | gcm.h | 353 int mbedtls_gcm_finish(mbedtls_gcm_context *ctx,
|
/mbedtls-latest/docs/ |
D | 3.0-migration-guide.md | 241 … implementations may return the last partial block in the call to `mbedtls_gcm_finish()` instead o… 242 * `mbedtls_gcm_finish()` now takes an extra output buffer for the last partial block. This is neede… 251 …partial block, to be returned in the next call to `mbedtls_gcm_update()` or `mbedtls_gcm_finish()`. 252 * `mbedtls_gcm_finish()` now takes an extra output buffer for the last partial block if needed.
|
/mbedtls-latest/ |
D | ChangeLog | 1705 how the input to multipart operations is broken down. mbedtls_gcm_finish() 1711 mbedtls_gcm_update() or mbedtls_gcm_finish(). Furthermore, applications 4283 mbedtls_gcm_finish(). Found by cmiatpaar. #602
|