Lines Matching refs:vmacctx
73 static void blake2_mac_free(void *vmacctx)
75 struct blake2_mac_data_st *macctx = vmacctx;
83 static size_t blake2_mac_size(void *vmacctx)
85 struct blake2_mac_data_st *macctx = vmacctx;
105 static int blake2_mac_init(void *vmacctx, const unsigned char *key,
108 struct blake2_mac_data_st *macctx = vmacctx;
123 static int blake2_mac_update(void *vmacctx,
126 struct blake2_mac_data_st *macctx = vmacctx;
134 static int blake2_mac_final(void *vmacctx,
138 struct blake2_mac_data_st *macctx = vmacctx;
158 static int blake2_get_ctx_params(void *vmacctx, OSSL_PARAM params[])
163 && !OSSL_PARAM_set_size_t(p, blake2_mac_size(vmacctx)))
189 static int blake2_mac_set_ctx_params(void *vmacctx, const OSSL_PARAM params[])
191 struct blake2_mac_data_st *macctx = vmacctx;