Lines Matching full:hash
1052 u8 *hash;
1062 if (os_strncmp(value, "hash:", 5) != 0) {
1084 /* NtPasswordHash: hash:<32 hex digits> */
1086 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash length "
1091 hash = os_malloc(16);
1092 if (hash == NULL)
1095 if (hexstr2bin(value + 5, hash, 16)) {
1096 os_free(hash);
1097 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash", line);
1101 wpa_hexdump_key(MSG_MSGDUMP, data->name, hash, 16);
1104 ssid->eap.password = hash;
1129 os_memcpy(buf, "hash:", 5);