Searched refs:mbedtls_poly1305_update (Results 1 – 4 of 4) sorted by relevance
/third_party/mbedtls/tests/suites/ |
D | test_suite_poly1305.function | 35 TEST_ASSERT( mbedtls_poly1305_update( &ctx, src_str->x, src_str->len ) == 0 ); 52 TEST_ASSERT( mbedtls_poly1305_update( &ctx, src_str->x, 1 ) == 0 ); 53 TEST_ASSERT( mbedtls_poly1305_update( &ctx, src_str->x + 1, src_str->len - 1 ) == 0 ); 68 TEST_ASSERT( mbedtls_poly1305_update( &ctx, src_str->x, 1 ) == 0 ); 69 TEST_ASSERT( mbedtls_poly1305_update( &ctx, src_str->x + 1, 1 ) == 0 ); 70 TEST_ASSERT( mbedtls_poly1305_update( &ctx, src_str->x + 2, src_str->len - 2 ) == 0 );
|
/third_party/mbedtls/library/ |
D | chachapoly.c | 68 return( mbedtls_poly1305_update( &ctx->poly1305_ctx, in chachapoly_pad_aad() 87 return( mbedtls_poly1305_update( &ctx->poly1305_ctx, in chachapoly_pad_ciphertext() 181 return( mbedtls_poly1305_update( &ctx->poly1305_ctx, aad, aad_len ) ); in mbedtls_chachapoly_update_aad() 217 ret = mbedtls_poly1305_update( &ctx->poly1305_ctx, output, len ); in mbedtls_chachapoly_update() 223 ret = mbedtls_poly1305_update( &ctx->poly1305_ctx, input, len ); in mbedtls_chachapoly_update() 269 ret = mbedtls_poly1305_update( &ctx->poly1305_ctx, len_block, 16U ); in mbedtls_chachapoly_finish()
|
D | poly1305.c | 305 int mbedtls_poly1305_update( mbedtls_poly1305_context *ctx, in mbedtls_poly1305_update() function 413 ret = mbedtls_poly1305_update( &ctx, input, ilen ); in mbedtls_poly1305_mac()
|
/third_party/mbedtls/include/mbedtls/ |
D | poly1305.h | 125 int mbedtls_poly1305_update( mbedtls_poly1305_context *ctx,
|