| /src/external/bsd/wpa/dist/hostapd/ |
| nt_password_hash.c | 17 unsigned char password_hash[16]; local 40 if (nt_password_hash((u8 *) password, strlen(password), password_hash)) 42 for (i = 0; i < sizeof(password_hash); i++) 43 printf("%02x", password_hash[i]);
|
| /src/external/bsd/wpa/dist/src/eap_peer/ |
| mschapv2.c | 46 u8 password_hash[16], password_hash_hash[16]; local 99 if (nt_password_hash(password, password_len, password_hash) || 100 hash_nt_password_hash(password_hash, password_hash_hash))
|
| eap_pwd.c | 32 int password_hash; member in struct:eap_pwd_data 135 data->password_hash = pwhash; 297 if (id->prep == EAP_PWD_PREP_NONE && data->password_hash) { 403 if (data->password_hash) { 534 if (data->password_hash) {
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| ms_funcs.c | 106 * @password_hash: 16-octet PasswordHash (OUT) 110 u8 *password_hash) 121 return md4_vector(1, (const u8 **) &pos, &len, password_hash); 127 * @password_hash: 16-octet PasswordHash (IN) 131 int hash_nt_password_hash(const u8 *password_hash, u8 *password_hash_hash) 134 return md4_vector(1, &password_hash, &len, password_hash_hash); 141 * @password_hash: 16-octet PasswordHash (IN) 145 int challenge_response(const u8 *challenge, const u8 *password_hash, 150 if (des_encrypt(challenge, password_hash, response) < 0 || 151 des_encrypt(challenge, password_hash + 7, response + 8) < 0 177 u8 password_hash[16]; local 289 u8 password_hash[16]; local 309 u8 password_hash[16]; local 475 u8 password_hash[16]; local [all...] |
| crypto_module_tests.c | 2487 u8 password_hash[] = { local 2517 os_memcmp(password_hash, buf, sizeof(password_hash)) != 0) { 2530 if (hash_nt_password_hash(password_hash, buf) ||
|
| /src/external/bsd/wpa/dist/src/eap_server/ |
| eap_server_pwd.c | 29 int password_hash; member in struct:eap_pwd_data 119 data->password_hash = sm->user->password_hash; 222 data->password_prep = data->password_hash ? EAP_PWD_PREP_MS :
|
| eap.h | 32 int password_hash; /* whether password is hashed with member in struct:eap_user
|
| /src/external/bsd/wpa/dist/src/ap/ |
| ap_config.h | 190 unsigned int password_hash:1; /* whether password is hashed with member in struct:hostapd_eap_user
|