/aosp_15_r20/external/mbedtls/tests/suites/ |
H A 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));
|
/aosp_15_r20/external/mbedtls/library/ |
H A D | gcm.c | 495 int mbedtls_gcm_finish(mbedtls_gcm_context *ctx, in mbedtls_gcm_finish() function 573 if ((ret = mbedtls_gcm_finish(ctx, NULL, 0, &olen, tag, tag_len)) != 0) { in mbedtls_gcm_crypt_and_tag() 1049 ret = mbedtls_gcm_finish(&ctx, NULL, 0, &olen, tag_buf, 16); in mbedtls_gcm_self_test() 1129 ret = mbedtls_gcm_finish(&ctx, NULL, 0, &olen, tag_buf, 16); in mbedtls_gcm_self_test()
|
H A D | cipher.c | 1188 return mbedtls_gcm_finish((mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_write_tag() 1245 if (0 != (ret = mbedtls_gcm_finish( in mbedtls_cipher_check_tag()
|
H A D | psa_crypto_aead.c | 572 mbedtls_gcm_finish(&operation->ctx.gcm, in mbedtls_psa_aead_finish()
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/ |
H A 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()
|
H A D | cipher.c | 1204 return mbedtls_gcm_finish((mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_write_tag() 1261 if (0 != (ret = mbedtls_gcm_finish( in mbedtls_cipher_check_tag()
|
H A D | psa_crypto_aead.c | 568 mbedtls_gcm_finish(&operation->ctx.gcm, in mbedtls_psa_aead_finish()
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/suites/ |
H A 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));
|
/aosp_15_r20/external/trusty/arm-trusted-firmware/drivers/auth/mbedtls/ |
D | mbedtls_crypto.c | 353 rc = mbedtls_gcm_finish(&ctx, tag_buf, sizeof(tag_buf)); in aes_gcm_decrypt() 355 rc = mbedtls_gcm_finish(&ctx, NULL, 0, &output_length, tag_buf, sizeof(tag_buf)); in aes_gcm_decrypt()
|
D | mbedtls_psa_crypto.c | 681 rc = mbedtls_gcm_finish(&ctx, tag_buf, sizeof(tag_buf)); in aes_gcm_decrypt() 683 rc = mbedtls_gcm_finish(&ctx, NULL, 0, &output_length, tag_buf, sizeof(tag_buf)); in aes_gcm_decrypt()
|
/aosp_15_r20/external/libwebsockets/lib/tls/mbedtls/ |
H A D | lws-genaes.c | 142 n = mbedtls_gcm_finish(&ctx->u.ctx_gcm, last, sizeof(last), in lws_genaes_destroy() 145 n = mbedtls_gcm_finish(&ctx->u.ctx_gcm, tag, tlen); in lws_genaes_destroy()
|
/aosp_15_r20/external/mbedtls/include/mbedtls/ |
H A D | gcm.h | 339 int mbedtls_gcm_finish(mbedtls_gcm_context *ctx,
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/include/mbedtls/ |
H A D | gcm.h | 353 int mbedtls_gcm_finish(mbedtls_gcm_context *ctx,
|
/aosp_15_r20/external/arm-trusted-firmware/drivers/auth/mbedtls/ |
H A D | mbedtls_crypto.c | 281 rc = mbedtls_gcm_finish(&ctx, tag_buf, sizeof(tag_buf)); in aes_gcm_decrypt()
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/docs/ |
H A 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.
|
/aosp_15_r20/external/mbedtls/docs/ |
H A 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.
|
/aosp_15_r20/external/mbedtls/ |
H A D | ChangeLog | 1250 how the input to multipart operations is broken down. mbedtls_gcm_finish() 1256 mbedtls_gcm_update() or mbedtls_gcm_finish(). Furthermore, applications 3828 mbedtls_gcm_finish(). Found by cmiatpaar. #602
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/ |
H A D | ChangeLog | 1510 how the input to multipart operations is broken down. mbedtls_gcm_finish() 1516 mbedtls_gcm_update() or mbedtls_gcm_finish(). Furthermore, applications 4088 mbedtls_gcm_finish(). Found by cmiatpaar. #602
|