Lines Matching refs:vctx
157 aes_gcm_reinit(void *vctx, const uint8_t *iv, size_t ivlen) in aes_gcm_reinit() argument
159 struct aes_gcm_ctx *ctx = vctx; in aes_gcm_reinit()
173 aes_ccm_reinit(void *vctx, const uint8_t *iv, size_t ivlen) in aes_ccm_reinit() argument
175 struct aes_ccm_ctx *ctx = vctx; in aes_ccm_reinit()
258 aes_gcm_setkey(void *vctx, const uint8_t *key, int len) in aes_gcm_setkey() argument
260 struct aes_gcm_ctx *ctx = vctx; in aes_gcm_setkey()
272 aes_ccm_setkey(void *vctx, const uint8_t *key, int len) in aes_ccm_setkey() argument
274 struct aes_ccm_ctx *ctx = vctx; in aes_ccm_setkey()
286 aes_gcm_update(void *vctx, const void *buf, u_int len) in aes_gcm_update() argument
288 struct aes_gcm_ctx *ctx = vctx; in aes_gcm_update()
294 aes_ccm_update(void *vctx, const void *buf, u_int len) in aes_ccm_update() argument
296 struct aes_ccm_ctx *ctx = vctx; in aes_ccm_update()
302 aes_gcm_final(uint8_t *tag, void *vctx) in aes_gcm_final() argument
304 struct aes_gcm_ctx *ctx = vctx; in aes_gcm_final()
310 aes_ccm_final(uint8_t *tag, void *vctx) in aes_ccm_final() argument
312 struct aes_ccm_ctx *ctx = vctx; in aes_ccm_final()