Home
last modified time | relevance | path

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

/aosp_15_r20/external/mbedtls/tests/suites/
H A Dtest_suite_cipher.function237 /* mbedtls_cipher_update_ad() */
239 mbedtls_cipher_update_ad(&invalid_ctx,
441 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_dec, ad, sizeof(ad) - i));
442 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_enc, ad, sizeof(ad) - i));
542 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx, NULL, 0));
616 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_dec, NULL, 0));
720 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_dec, NULL, 0));
721 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx_enc, NULL, 0));
816 TEST_EQUAL(expected, mbedtls_cipher_update_ad(&ctx, ad->x, ad->len));
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/suites/
H A 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));
/aosp_15_r20/external/mbedtls/programs/cipher/
H A Dcipher_aead_demo.c190 CHK(mbedtls_cipher_update_ad(ctx, ad, ad_len)); in aead_encrypt()
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/cipher/
H A Dcipher_aead_demo.c190 CHK(mbedtls_cipher_update_ad(ctx, ad, ad_len)); in aead_encrypt()
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/include/mbedtls/
H A Dcipher.h923 int mbedtls_cipher_update_ad(mbedtls_cipher_context_t *ctx,
/aosp_15_r20/external/mbedtls/include/mbedtls/
H A Dcipher.h933 int mbedtls_cipher_update_ad(mbedtls_cipher_context_t *ctx,
/aosp_15_r20/external/mbedtls/library/
H A Dcipher.c515 int mbedtls_cipher_update_ad(mbedtls_cipher_context_t *ctx, in mbedtls_cipher_update_ad() function
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/
H A Dcipher.c531 int mbedtls_cipher_update_ad(mbedtls_cipher_context_t *ctx, in mbedtls_cipher_update_ad() function
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/docs/
H A Dpsa-transition.md391 4. Call `mbedtls_cipher_update_ad` to pass the unencrypted additional data.