HomeSort by relevance Sort by last modified time
    Searched defs:password_hash (Results 1 - 9 of 9) sorted by null

  /external/wpa_supplicant_8/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]);
  /external/wpa_supplicant_8/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 29 int password_hash; member in struct:eap_pwd_data
135 data->password_hash = pwhash;
261 if (id->prep == EAP_PWD_PREP_NONE && data->password_hash) {
297 if (data->password_hash) {
  /external/boringssl/src/crypto/curve25519/
spake25519.c 278 uint8_t password_hash[SHA512_DIGEST_LENGTH]; member in struct:spake2_ctx_st
358 OPENSSL_memcpy(ctx->password_hash, password_tmp, sizeof(ctx->password_hash));
450 update_with_length_prefix(&sha, ctx->password_hash,
451 sizeof(ctx->password_hash));
  /external/wpa_supplicant_8/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)
144 void challenge_response(const u8 *challenge, const u8 *password_hash,
148 des_encrypt(challenge, password_hash, response);
149 des_encrypt(challenge, password_hash + 7, response + 8)
174 u8 password_hash[16]; local
286 u8 password_hash[16]; local
306 u8 password_hash[16]; local
471 u8 password_hash[16]; local
    [all...]
crypto_module_tests.c 1929 u8 password_hash[] = { local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap.h 32 int password_hash; /* whether password is hashed with member in struct:eap_user
eap_server_pwd.c 28 int password_hash; member in struct:eap_pwd_data
117 data->password_hash = sm->user->password_hash;
192 wpabuf_put_u8(data->outbuf, data->password_hash ? EAP_PWD_PREP_MS :
607 data->password_hash ? EAP_PWD_PREP_MS : EAP_PWD_PREP_NONE) {
629 if (data->password_hash) {
  /external/wpa_supplicant_8/src/ap/
ap_config.h 166 unsigned int password_hash:1; /* whether password is hashed with member in struct:hostapd_eap_user

Completed in 514 milliseconds