Home
last modified time | relevance | path

Searched refs:mbedtls_cipher_update_ad (Results 1 – 5 of 5) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_cipher.function241 /* mbedtls_cipher_update_ad() */
243 mbedtls_cipher_update_ad(&invalid_ctx,
445 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_dec, ad, sizeof(ad) - i));
446 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_enc, ad, sizeof(ad) - i));
546 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx, NULL, 0));
620 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_dec, NULL, 0));
724 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_dec, NULL, 0));
725 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_enc, NULL, 0));
820 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx, ad->x, ad->len));
/openthread-latest/third_party/mbedtls/repo/programs/cipher/
Dcipher_aead_demo.c190 CHK(mbedtls_cipher_update_ad(ctx, ad, ad_len)); in aead_encrypt()
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dcipher.h923 int mbedtls_cipher_update_ad(mbedtls_cipher_context_t *ctx,
/openthread-latest/third_party/mbedtls/repo/library/
Dcipher.c531 int mbedtls_cipher_update_ad(mbedtls_cipher_context_t *ctx, in mbedtls_cipher_update_ad() function
/openthread-latest/third_party/mbedtls/repo/docs/
Dpsa-transition.md391 4. Call `mbedtls_cipher_update_ad` to pass the unencrypted additional data.