Searched defs:Sigma1 (Results 1 - 10 of 10) sorted by relevance

/external/dropbear/libtomcrypt/src/hashes/sha2/
H A Dsha256.c63 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) macro
98 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
110 t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i]; \
H A Dsha512.c88 #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41)) macro
120 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
133 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha256-internal.c73 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) macro
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/wpa_supplicant_8/src/crypto/
H A Dsha256-internal.c73 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) macro
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha256-internal.c73 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) macro
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DLongDigest.java216 W[t] = Sigma1(W[t - 2]) + W[t - 7] + Sigma0(W[t - 15]) + W[t - 16];
329 private long Sigma1( method in class:LongDigest
/external/chromium_org/third_party/openssl/openssl/crypto/sha/
H A Dsha256.c142 #define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7)) macro
166 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
178 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
193 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
H A Dsha512.c387 #define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) macro
425 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
439 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
474 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
486 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
502 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \
/external/openssl/crypto/sha/
H A Dsha256.c142 #define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7)) macro
166 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
178 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
193 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
H A Dsha512.c387 #define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) macro
425 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
439 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
474 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
486 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
502 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \

Completed in 1193 milliseconds