Lines Matching defs:hctx
1661 HMAC_CTX *hctx;
1663 if ((hctx = HMAC_CTX_new()) == NULL) {
1668 HMAC_Init_ex(hctx, (unsigned char *) "This is a key...",
1675 if (!HMAC_Init_ex(hctx, NULL, 0, NULL, NULL)) {
1676 HMAC_CTX_free(hctx);
1679 if (!HMAC_Update(hctx, buf, lengths[j])) {
1680 HMAC_CTX_free(hctx);
1683 if (!HMAC_Final(hctx, &(hmac[0]), NULL)) {
1684 HMAC_CTX_free(hctx);
1691 HMAC_CTX_free(hctx);