Lines Matching defs:hctx
387 HMAC_CTX *hctx_tpl = NULL, *hctx = NULL;
425 hctx = HMAC_CTX_new();
426 if (hctx == NULL)
441 if (!HMAC_CTX_copy(hctx, hctx_tpl))
443 if (!HMAC_Update(hctx, salt, saltlen)
444 || !HMAC_Update(hctx, itmp, 4)
445 || !HMAC_Final(hctx, digtmp, NULL))
449 if (!HMAC_CTX_copy(hctx, hctx_tpl))
451 if (!HMAC_Update(hctx, digtmp, mdlen)
452 || !HMAC_Final(hctx, digtmp, NULL))
464 HMAC_CTX_free(hctx);