Lines Matching refs:vctx
87 cml_encrypt(void *vctx, const uint8_t *in, uint8_t *out) in cml_encrypt() argument
89 struct camellia_cbc_ctx *ctx = vctx; in cml_encrypt()
98 cml_decrypt(void *vctx, const uint8_t *in, uint8_t *out) in cml_decrypt() argument
100 struct camellia_cbc_ctx *ctx = vctx; in cml_decrypt()
112 cml_encrypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len) in cml_encrypt_multi() argument
114 struct camellia_cbc_ctx *ctx = vctx; in cml_encrypt_multi()
130 cml_decrypt_multi(void *vctx, const uint8_t *in, uint8_t *out, size_t len) in cml_decrypt_multi() argument
132 struct camellia_cbc_ctx *ctx = vctx; in cml_decrypt_multi()
151 cml_setkey(void *vctx, const uint8_t *key, int len) in cml_setkey() argument
153 struct camellia_cbc_ctx *ctx = vctx; in cml_setkey()
163 cml_reinit(void *vctx, const uint8_t *iv, size_t iv_len) in cml_reinit() argument
165 struct camellia_cbc_ctx *ctx = vctx; in cml_reinit()