Home | History | Annotate | Download | only in apps

Lines Matching refs:hctx

1530 		HMAC_CTX hctx;
1532 HMAC_CTX_init(&hctx);
1533 HMAC_Init_ex(&hctx,(unsigned char *)"This is a key...",
1542 HMAC_Init_ex(&hctx,NULL,0,NULL,NULL);
1543 HMAC_Update(&hctx,buf,lengths[j]);
1544 HMAC_Final(&hctx,&(hmac[0]),NULL);
1549 HMAC_CTX_cleanup(&hctx);