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