Searched refs:mbedtls_gcm_finish (Results 1 – 7 of 7) sorted by relevance
/mbedtls-development/include/mbedtls/ |
A D | gcm.h | 352 int mbedtls_gcm_finish( mbedtls_gcm_context *ctx,
|
/mbedtls-development/tests/suites/ |
A D | test_suite_gcm.function | 53 TEST_EQUAL( 0, mbedtls_gcm_finish( ctx, NULL, 0, &olen, output, tag->len ) ); 100 TEST_EQUAL( 0, mbedtls_gcm_finish( ctx, NULL, 0, &olen, output, tag->len ) ); 130 TEST_EQUAL( 0, mbedtls_gcm_finish( ctx, NULL, 0, &olen, 150 TEST_EQUAL( 0, mbedtls_gcm_finish( ctx, NULL, 0, &olen, output, tag->len ) );
|
/mbedtls-development/library/ |
A D | gcm.c | 510 int mbedtls_gcm_finish( mbedtls_gcm_context *ctx, in mbedtls_gcm_finish() function 598 if( ( ret = mbedtls_gcm_finish( ctx, NULL, 0, &olen, tag, tag_len ) ) != 0 ) in mbedtls_gcm_crypt_and_tag() 1050 ret = mbedtls_gcm_finish( &ctx, NULL, 0, &olen, tag_buf, 16 ); in mbedtls_gcm_self_test() 1122 ret = mbedtls_gcm_finish( &ctx, NULL, 0, &olen, tag_buf, 16 ); in mbedtls_gcm_self_test()
|
A D | psa_crypto_aead.c | 568 mbedtls_gcm_finish( &operation->ctx.gcm, in mbedtls_psa_aead_finish()
|
A D | cipher.c | 1151 return( mbedtls_gcm_finish( (mbedtls_gcm_context *) ctx->cipher_ctx, in mbedtls_cipher_write_tag() 1208 if( 0 != ( ret = mbedtls_gcm_finish( in mbedtls_cipher_check_tag()
|
/mbedtls-development/docs/ |
A D | 3.0-migration-guide.md | 220 … implementations may return the last partial block in the call to `mbedtls_gcm_finish()` instead o… 221 * `mbedtls_gcm_finish()` now takes an extra output buffer for the last partial block. This is neede… 230 …partial block, to be returned in the next call to `mbedtls_gcm_update()` or `mbedtls_gcm_finish()`. 231 * `mbedtls_gcm_finish()` now takes an extra output buffer for the last partial block if needed.
|
/mbedtls-development/ |
A D | ChangeLog | 60 how the input to multipart operations is broken down. mbedtls_gcm_finish() 66 mbedtls_gcm_update() or mbedtls_gcm_finish(). Furthermore, applications 2637 mbedtls_gcm_finish(). Found by cmiatpaar. #602
|
Completed in 15 milliseconds