Home | History | Annotate | Download | only in common

Lines Matching refs:macctx

230 int ossl_prov_set_macctx(EVP_MAC_CTX *macctx,
294 return EVP_MAC_CTX_set_params(macctx, mac_params);
297 int ossl_prov_macctx_load_from_params(EVP_MAC_CTX **macctx,
325 EVP_MAC_CTX_free(*macctx);
326 *macctx = mac == NULL ? NULL : EVP_MAC_CTX_new(mac);
329 if (*macctx == NULL)
337 if (*macctx == NULL)
340 if (ossl_prov_set_macctx(*macctx, params, ciphername, mdname, NULL,
344 EVP_MAC_CTX_free(*macctx);
345 *macctx = NULL;