/hostap-latest/src/crypto/ |
D | md4-internal.c | 184 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument 185 #define F2(x, y, z) ((x & y) | (x & z) | (y & z)) argument 186 #define F3(x, y, z) (x ^ y ^ z) argument 189 #define MD4STEP(f, w, x, y, z, data, s) \ argument 190 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s) )
|
D | md5-internal.c | 194 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument 195 #define F2(x, y, z) F1(z, x, y) argument 196 #define F3(x, y, z) (x ^ y ^ z) argument 197 #define F4(x, y, z) (y ^ (x | ~z)) argument 200 #define MD5STEP(f, w, x, y, z, data, s) \ argument 201 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
|
D | sha1-internal.c | 144 #define R0(v,w,x,y,z,i) \ argument 145 z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \ 147 #define R1(v,w,x,y,z,i) \ argument 148 z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \ 150 #define R2(v,w,x,y,z,i) \ argument 151 z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5); w = rol(w, 30); 152 #define R3(v,w,x,y,z,i) \ argument 153 z += (((w | x) & y) | (w & x)) + blk(i) + 0x8F1BBCDC + rol(v, 5); \ 155 #define R4(v,w,x,y,z,i) \ argument 156 z += (w ^ x ^ y) + blk(i) + 0xCA62C1D6 + rol(v, 5); \
|
D | sha256-internal.c | 71 #define Ch(x,y,z) (z ^ (x & (y ^ z))) argument 72 #define Maj(x,y,z) (((x | y) & z) | (x & y)) argument
|
D | sha512-internal.c | 92 #define Ch(x,y,z) (z ^ (x & (y ^ z))) argument 93 #define Maj(x,y,z) (((x | y) & z) | (x & y)) argument
|
D | aes-gcm.c | 65 static void gf_mult(const u8 *x, const u8 *y, u8 *z) in gf_mult() argument 70 os_memset(z, 0, 16); /* Z_0 = 0^128 */ in gf_mult() 77 xor_block(z, v); in gf_mult()
|
D | crypto_wolfssl.c | 1699 err = mp_set(e->g->z, 1); in crypto_ec_init() 1834 mp_forcezero(point->z); in crypto_ec_point_deinit() 1868 if (!mp_isone(p->z)) { in crypto_ec_point_to_bin() 1921 mp_set(point->z, 1); in crypto_ec_point_from_bin() 1971 mp_mulmod(pa->z, &mu, modulus, ta->z) != MP_OKAY || in crypto_ec_point_add() 1974 mp_mulmod(pb->z, &mu, modulus, tb->z) != MP_OKAY) { in crypto_ec_point_add()
|
/hostap-latest/src/common/ |
D | sae.c | 588 static int sswu_curve_param(int group, int *z) in sswu_curve_param() argument 592 *z = -10; in sswu_curve_param() 595 *z = -12; in sswu_curve_param() 598 *z = -4; in sswu_curve_param() 602 *z = -5; in sswu_curve_param() 605 *z = 31; in sswu_curve_param() 608 *z = -2; in sswu_curve_param() 611 *z = 7; in sswu_curve_param() 638 struct crypto_bignum *u2, *t1, *t2, *z, *t, *zero, *one, *two, *three, in sswu() local 660 z = crypto_bignum_init_uint(abs(z_int)); in sswu() [all …]
|
D | dpp_pkex.c | 557 pkex->code_len, Kx, Kx_len, pkex->z, in dpp_pkex_rx_exchange_req() 671 if (aes_siv_encrypt(pkex->z, curve->hash_len, in dpp_pkex_build_commit_reveal_req() 879 pkex->z, curve->hash_len); in dpp_pkex_rx_exchange_resp() 992 if (aes_siv_encrypt(pkex->z, curve->hash_len, in dpp_pkex_build_commit_reveal_resp() 1074 if (aes_siv_decrypt(pkex->z, curve->hash_len, in dpp_pkex_rx_commit_reveal_req() 1254 if (aes_siv_decrypt(pkex->z, curve->hash_len, in dpp_pkex_rx_commit_reveal_resp()
|
D | dpp_i.h | 134 u8 *z, unsigned int hash_len);
|
D | dpp_crypto.c | 1616 u8 *z, unsigned int hash_len) in dpp_pkex_derive_z() argument 1662 z, hash_len); in dpp_pkex_derive_z() 1665 z, hash_len); in dpp_pkex_derive_z() 1668 z, hash_len); in dpp_pkex_derive_z() 1677 z, hash_len); in dpp_pkex_derive_z()
|
D | wpa_common.c | 397 const u8 *z, size_t z_len, size_t kdk_len) in wpa_pmk_to_ptk() argument 440 if (z && z_len) { in wpa_pmk_to_ptk() 441 os_memcpy(data + 2 * ETH_ALEN + 2 * WPA_NONCE_LEN, z, z_len); in wpa_pmk_to_ptk() 562 if (z && z_len) in wpa_pmk_to_ptk() 563 wpa_hexdump_key(MSG_DEBUG, "WPA: Z.x", z, z_len); in wpa_pmk_to_ptk()
|
D | wpa_common.h | 468 const u8 *z, size_t z_len, size_t kdk_len);
|
D | dpp.h | 219 u8 z[DPP_MAX_HASH_LEN]; member
|
/hostap-latest/wpa_supplicant/ |
D | op_classes.c | 320 int z; in wpas_op_class_supported() local 333 for (z = 0; ; z++) { in wpas_op_class_supported() 334 int f = ssid->freq_list[z]; in wpas_op_class_supported()
|
D | defconfig | 670 # Experimental implementation based on IEEE P802.11z/D2.6 and the protocol
|
/hostap-latest/tests/hwsim/auth_serv/ |
D | server.key | 23 mvD+35PIN68EJwnLlGkiG/8a0bS/z+AfHLM06A/hqfvxmsOQ0ZZ+2mqkWpS51MTr
|
D | server-certpol2.key | 11 z/4yNPManKTASKtpZjQzr3aSeiuLR6ij4msfHssRAEmwhkQrFljclbyZxpcg33aW
|
D | server-certpol2.pem | 96 qSs+QccQVAiW7sG42F/IEpFBS971+UiHYkC0PEIotLVz+nMOLDU8ZYm5+Sy2SB/z
|
/hostap-latest/src/rsn_supp/ |
D | wpa.h | 663 void wpa_sm_set_dpp_z(struct wpa_sm *sm, const struct wpabuf *z);
|
D | wpa.c | 720 const u8 *z = NULL; in wpa_derive_ptk() local 731 z = wpabuf_head(sm->dpp_z); in wpa_derive_ptk() 756 sm->pairwise_cipher, z, z_len, in wpa_derive_ptk() 7029 void wpa_sm_set_dpp_z(struct wpa_sm *sm, const struct wpabuf *z) in wpa_sm_set_dpp_z() argument 7033 sm->dpp_z = z ? wpabuf_dup(z) : NULL; in wpa_sm_set_dpp_z()
|
/hostap-latest/src/ap/ |
D | wpa_auth.h | 633 void wpa_auth_set_dpp_z(struct wpa_state_machine *sm, const struct wpabuf *z);
|
D | wpa_auth.c | 2867 const u8 *z = NULL; local 2919 z = wpabuf_head(sm->dpp_z); 2930 sm->pairwise, z, z_len, kdk_len); 6989 void wpa_auth_set_dpp_z(struct wpa_state_machine *sm, const struct wpabuf *z) argument 6993 sm->dpp_z = z ? wpabuf_dup(z) : NULL;
|
/hostap-latest/hostapd/ |
D | defconfig | 413 # Experimental implementation based on IEEE P802.11z/D2.6 and the protocol
|
/hostap-latest/wpa_supplicant/wpa_gui-qt4/lang/ |
D | wpa_gui_de.ts | 1208 …<translation>Wenn Sie einen AP Geräte PIN verwenden möchten, z.B.: von einem Aufkleber am Gerät, g…
|