Searched refs:poly1305_ctx (Results 1 – 2 of 2) sorted by relevance
/openthread-2.7.6/third_party/mbedtls/repo/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() 97 mbedtls_poly1305_init( &ctx->poly1305_ctx ); in mbedtls_chachapoly_init() 110 mbedtls_poly1305_free( &ctx->poly1305_ctx ); in mbedtls_chachapoly_free() 154 ret = mbedtls_poly1305_starts( &ctx->poly1305_ctx, poly1305_key ); in mbedtls_chachapoly_starts() 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() 283 ret = mbedtls_poly1305_update( &ctx->poly1305_ctx, len_block, 16U ); in mbedtls_chachapoly_finish() 287 ret = mbedtls_poly1305_finish( &ctx->poly1305_ctx, mac ); in mbedtls_chachapoly_finish()
|
/openthread-2.7.6/third_party/mbedtls/repo/include/mbedtls/ |
D | chachapoly.h | 65 mbedtls_poly1305_context poly1305_ctx; /**< The Poly1305 context. */ member
|