Lines Matching defs:ctx
28 * \param ctx The context to initialize.
30 static inline void mbedtls_block_cipher_init(mbedtls_block_cipher_context_t *ctx)
32 memset(ctx, 0, sizeof(*ctx));
39 * \param ctx The context to set up.
49 int mbedtls_block_cipher_setup(mbedtls_block_cipher_context_t *ctx,
55 * \param ctx The context to configure.
67 int mbedtls_block_cipher_setkey(mbedtls_block_cipher_context_t *ctx,
74 * \param ctx The context holding the key.
85 int mbedtls_block_cipher_encrypt(mbedtls_block_cipher_context_t *ctx,
91 * \param ctx The context to clear.
93 void mbedtls_block_cipher_free(mbedtls_block_cipher_context_t *ctx);