Home
last modified time | relevance | path

Searched refs:mbedtls_chacha20_context (Results 1 – 5 of 5) sorted by relevance

/trusted-firmware-m-3.7.0/interface/include/mbedtls/
Dchacha20.h38 typedef struct mbedtls_chacha20_context { struct
43 mbedtls_chacha20_context; typedef
64 void mbedtls_chacha20_init(mbedtls_chacha20_context *ctx);
75 void mbedtls_chacha20_free(mbedtls_chacha20_context *ctx);
93 int mbedtls_chacha20_setkey(mbedtls_chacha20_context *ctx,
115 int mbedtls_chacha20_starts(mbedtls_chacha20_context *ctx,
148 int mbedtls_chacha20_update(mbedtls_chacha20_context *ctx,
Dchachapoly.h49 mbedtls_chacha20_context MBEDTLS_PRIVATE(chacha20_ctx); /**< The ChaCha20 context. */
/trusted-firmware-m-3.7.0/lib/ext/cryptocell-312-runtime/codesafe/src/mbedtls_api/
Dchacha20_alt.c30 void mbedtls_chacha20_init( mbedtls_chacha20_context *ctx ) in mbedtls_chacha20_init()
41 if (sizeof(mbedtls_chacha20_context) != sizeof(ChachaContext_t)) { in mbedtls_chacha20_init()
51 void mbedtls_chacha20_free( mbedtls_chacha20_context *ctx ) in mbedtls_chacha20_free()
55 mbedtls_platform_zeroize( ctx, sizeof( mbedtls_chacha20_context ) ); in mbedtls_chacha20_free()
59 int mbedtls_chacha20_setkey( mbedtls_chacha20_context *ctx, in mbedtls_chacha20_setkey()
75 int mbedtls_chacha20_starts( mbedtls_chacha20_context* ctx, in mbedtls_chacha20_starts()
84 if (sizeof(mbedtls_chacha20_context) != sizeof(ChachaContext_t)) { in mbedtls_chacha20_starts()
101 int mbedtls_chacha20_update( mbedtls_chacha20_context *ctx, in mbedtls_chacha20_update()
160 mbedtls_chacha20_context ctx; in mbedtls_chacha20_crypt()
/trusted-firmware-m-3.7.0/lib/ext/cryptocell-312-runtime/shared/include/mbedtls/
Dchacha20_alt.h46 mbedtls_chacha20_context; typedef
/trusted-firmware-m-3.7.0/lib/ext/cryptocell-312-runtime/host/src/tests/integration_cc3x/runtime_integration_test/tests/
Drun_integration_chacha.c62 mbedtls_chacha20_context ctx; in runIt_Chacha()