Home
last modified time | relevance | path

Searched refs:chacha20_ctx (Results 1 – 2 of 2) sorted by relevance

/reactos/dll/3rdparty/mbedtls/
H A Dchachapoly.c126 mbedtls_chacha20_init( &ctx->chacha20_ctx ); in mbedtls_chachapoly_init()
139 mbedtls_chacha20_free( &ctx->chacha20_ctx ); in mbedtls_chachapoly_free()
154 ret = mbedtls_chacha20_setkey( &ctx->chacha20_ctx, key ); in mbedtls_chachapoly_setkey()
169 ret = mbedtls_chacha20_starts( &ctx->chacha20_ctx, nonce, 0U ); in mbedtls_chachapoly_starts()
179 ret = mbedtls_chacha20_update( &ctx->chacha20_ctx, sizeof( poly1305_key ), in mbedtls_chachapoly_starts()
243 ret = mbedtls_chacha20_update( &ctx->chacha20_ctx, len, input, output ); in mbedtls_chachapoly_update()
257 ret = mbedtls_chacha20_update( &ctx->chacha20_ctx, len, input, output ); in mbedtls_chachapoly_update()
/reactos/sdk/include/reactos/libs/mbedtls/
H A Dchachapoly.h91 mbedtls_chacha20_context chacha20_ctx; /**< The ChaCha20 context. */ member