Searched refs:mbedtls_poly1305_update (Results 1 – 4 of 4) sorted by relevance
/mbedtls-latest/tests/suites/ |
D | test_suite_poly1305.function | 35 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x, src_str->len) == 0); 51 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x, 1) == 0); 52 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x + 1, src_str->len - 1) == 0); 66 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x, 1) == 0); 67 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x + 1, 1) == 0); 68 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x + 2, src_str->len - 2) == 0);
|
/mbedtls-latest/library/ |
D | chachapoly.c | 45 return mbedtls_poly1305_update(&ctx->poly1305_ctx, in chachapoly_pad_aad() 65 return mbedtls_poly1305_update(&ctx->poly1305_ctx, in chachapoly_pad_ciphertext() 153 return mbedtls_poly1305_update(&ctx->poly1305_ctx, aad, aad_len); in mbedtls_chachapoly_update_aad() 185 ret = mbedtls_poly1305_update(&ctx->poly1305_ctx, output, len); in mbedtls_chachapoly_update() 190 ret = mbedtls_poly1305_update(&ctx->poly1305_ctx, input, len); in mbedtls_chachapoly_update() 234 ret = mbedtls_poly1305_update(&ctx->poly1305_ctx, len_block, 16U); in mbedtls_chachapoly_finish()
|
D | poly1305.c | 270 int mbedtls_poly1305_update(mbedtls_poly1305_context *ctx, in mbedtls_poly1305_update() function 364 ret = mbedtls_poly1305_update(&ctx, input, ilen); in mbedtls_poly1305_mac()
|
/mbedtls-latest/include/mbedtls/ |
D | poly1305.h | 112 int mbedtls_poly1305_update(mbedtls_poly1305_context *ctx,
|