Home | History | Annotate | Download | only in apps

Lines Matching refs:hctx

1564 		HMAC_CTX hctx;
1566 HMAC_CTX_init(&hctx);
1567 HMAC_Init_ex(&hctx,(unsigned char *)"This is a key...",
1576 HMAC_Init_ex(&hctx,NULL,0,NULL,NULL);
1577 HMAC_Update(&hctx,buf,lengths[j]);
1578 HMAC_Final(&hctx,&(hmac[0]),NULL);
1583 HMAC_CTX_cleanup(&hctx);