Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:hash

133 	HCRYPTHASH hash;
143 if (!CryptCreateHash(prov, alg, 0, 0, &hash)) {
150 if (!CryptHashData(hash, (BYTE *) addr[i], len[i], 0)) {
152 CryptDestroyHash(hash);
158 if (!CryptGetHashParam(hash, HP_HASHVAL, mac, &hlen, 0)) {
163 CryptDestroyHash(hash);
373 HCRYPTHASH hash;
444 if (!CryptCreateHash(ctx->prov, calg, ctx->key, 0, &ctx->hash)) {
466 if (!CryptSetHashParam(ctx->hash, HP_HMAC_INFO, (BYTE *) &info,
469 CryptDestroyHash(ctx->hash);
485 if (!CryptHashData(ctx->hash, (BYTE *) data, len, 0)) {
509 if (!CryptGetHashParam(ctx->hash, HP_HASHVAL, mac, &hlen, 0)) {