Lines Matching refs:mac
69 This settable parameter is described in L<provider-mac(7)>.
71 =item "no-short-mac" (B<OSSL_MAC_PARAM_FIPS_NO_SHORT_MAC>) <integer>
73 This settable parameter is described in L<provider-mac(7)>. It is used by
79 This settable parameter is described in L<provider-mac(7)>.
83 The "custom" and "no-short-mac" parameters must be set as part of or before
100 EVP_MAC *mac = NULL;
105 mac = EVP_MAC_fetch(NULL, "KMAC-128", NULL);
106 if (mac == NULL)
108 ctx = EVP_MAC_CTX_new(mac);
109 /* The mac can be freed after it is used by EVP_MAC_CTX_new */
110 EVP_MAC_free(mac);