Home
last modified time | relevance | path

Searched refs:S (Results 1 – 16 of 16) sorted by relevance

/hostap-latest/src/crypto/
Dsha256-internal.c73 #define S(x, n) RORc((x), (n)) macro
75 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
76 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
77 #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3))
78 #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10))
83 u32 S[8], W[64], t0, t1; in sha256_compress() local
89 S[i] = md->state[i]; in sha256_compress()
110 RND(S[0], S[1], S[2], S[3], S[4], S[5], S[6], S[7], i); in sha256_compress()
111 t = S[7]; S[7] = S[6]; S[6] = S[5]; S[5] = S[4]; in sha256_compress()
112 S[4] = S[3]; S[3] = S[2]; S[2] = S[1]; S[1] = S[0]; S[0] = t; in sha256_compress()
[all …]
Dsha512-internal.c94 #define S(x, n) ROR64c(x, n) macro
96 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39))
97 #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41))
98 #define Gamma0(x) (S(x, 1) ^ S(x, 8) ^ R(x, 7))
99 #define Gamma1(x) (S(x, 19) ^ S(x, 61) ^ R(x, 6))
109 u64 S[8], t0, t1; in sha512_compress() local
119 S[i] = md->state[i]; in sha512_compress()
134 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i]; in sha512_compress()
135 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]); in sha512_compress()
136 S[7] = S[6]; in sha512_compress()
[all …]
Drc4.c14 #define S_SWAP(a,b) do { u8 t = S[a]; S[a] = S[b]; S[b] = t; } while(0)
20 u8 S[256], *pos; in rc4_skip() local
25 S[i] = i; in rc4_skip()
29 j = (j + S[i] + key[kpos]) & 0xff; in rc4_skip()
40 j = (j + S[i]) & 0xff; in rc4_skip()
48 j = (j + S[i]) & 0xff; in rc4_skip()
50 *pos++ ^= S[(S[i] + S[j]) & 0xff]; in rc4_skip()
Daes-gcm.c230 const u8 *crypt, size_t crypt_len, u8 *S) in aes_gcm_ghash() argument
240 ghash_start(S); in aes_gcm_ghash()
241 ghash(H, aad, aad_len, S); in aes_gcm_ghash()
242 ghash(H, crypt, crypt_len, S); in aes_gcm_ghash()
245 ghash(H, len_buf, sizeof(len_buf), S); in aes_gcm_ghash()
247 wpa_hexdump_key(MSG_EXCESSIVE, "S = GHASH_H(...)", S, 16); in aes_gcm_ghash()
260 u8 S[16]; in aes_gcm_ae() local
272 aes_gcm_ghash(H, aad, aad_len, crypt, plain_len, S); in aes_gcm_ae()
275 aes_gctr(aes, J0, S, sizeof(S), tag); in aes_gcm_ae()
294 u8 S[16], T[16]; in aes_gcm_ad() local
[all …]
Dcrypto_mbedtls_alt.c42 #define ACCESS_ECDH(S, var) S->MBEDTLS_PRIVATE(var) argument
44 #define ACCESS_ECDH(S, var) S->MBEDTLS_PRIVATE(ctx).MBEDTLS_PRIVATE(mbed_ecdh).MBEDTLS_PRIVATE(var) argument
/hostap-latest/wlantest/
Dwep.c20 u8 S[256]; in wep_crypt() local
21 #define S_SWAP(a,b) do { u8 t = S[a]; S[a] = S[b]; S[b] = t; } while(0) in wep_crypt()
26 S[i] = i; in wep_crypt()
29 j = (j + S[i] + key[i & 0x0f]) & 0xff; in wep_crypt()
38 j = (j + S[i]) & 0xff; in wep_crypt()
40 *pos ^= S[(S[i] + S[j]) & 0xff]; in wep_crypt()
/hostap-latest/tests/hwsim/auth_serv/
Duser.key.pkcs8.pkcs5v1513 S/VCOfs8MH2zd8ZnEsvoUhR5ibjBU8aUe9ir5OT5vjaazRLpod2X7LKWdcb7irZA
Dsha512-server.key14 S/orK2HHKEbksQftHCa7TRgOV31ijyaaPq9DdQeN3aINqNiC6PYXK6UYFCQdRyNL
Docsp-responder.pem71 S+siwl2+/zZvQifYS8bhvvgIz6z9UTCi6IATAAW2BVVCC/oeQIRQCYwlNVQlRTmf
/hostap-latest/wpa_supplicant/doc/docbook/
Deapol_test.sgml182 <term>-S</term>
/hostap-latest/doc/
Dtesting_tools.doxygen63 -S = save configuration after authentiation
/hostap-latest/hs20/server/
Dhs20-osu-server.txt116 -O $old_hostname-oscp -p lanforge -S $old_hostname \
/hostap-latest/wpa_supplicant/wpa_gui-qt4/
Dwpagui.ui434 <string>Ctrl+S</string>
/hostap-latest/tests/hwsim/
DREADME207 each test case into an sqlite database. The "-S <path to database>" and
/hostap-latest/wpa_supplicant/wpa_gui-qt4/lang/
Dwpa_gui_de.ts817 <source>Ctrl+S</source>
1146 <source>S&amp;tatus</source>
/hostap-latest/hostapd/
DChangeLog230 * added option (-S as command line argument) to request all interfaces
962 * fixed EAP-MSCHAPv2 server to use a space between S and M parameters