Lines Matching refs:vmacctx
69 static void cmac_free(void *vmacctx)
71 struct cmac_data_st *macctx = vmacctx;
99 static size_t cmac_size(void *vmacctx)
101 struct cmac_data_st *macctx = vmacctx;
116 static int cmac_init(void *vmacctx, const unsigned char *key,
119 struct cmac_data_st *macctx = vmacctx;
129 static int cmac_update(void *vmacctx, const unsigned char *data,
132 struct cmac_data_st *macctx = vmacctx;
137 static int cmac_final(void *vmacctx, unsigned char *out, size_t *outl,
140 struct cmac_data_st *macctx = vmacctx;
159 static int cmac_get_ctx_params(void *vmacctx, OSSL_PARAM params[])
164 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx)))
168 && !OSSL_PARAM_set_size_t(p, cmac_size(vmacctx)))
189 static int cmac_set_ctx_params(void *vmacctx, const OSSL_PARAM params[])
191 struct cmac_data_st *macctx = vmacctx;