Home | History | Annotate | Download | only in mac

Lines Matching defs:mac

59 /* The known value of the HMAC/SHA3-512 MAC of the above soliloqy */
72 * A property query used for selecting the MAC implementation.
80 EVP_MAC *mac = NULL;
95 mac = EVP_MAC_fetch(library_context, "HMAC", propq);
96 if (mac == NULL) {
102 mctx = EVP_MAC_CTX_new(mac);
125 /* Make a call to the final with a NULL buffer to get the length of the MAC */
135 /* Make one call to the final to get the MAC */
141 printf("Generated MAC:\n");
146 fprintf(stderr, "Generated MAC has an unexpected length\n");
151 fprintf(stderr, "Generated MAC does not match expected value\n");
163 EVP_MAC_free(mac);