Home
last modified time | relevance | path

Searched refs:Sigma1 (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/wpa_supplicant/src/crypto/
H A Dsha256-internal.c76 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) macro
107 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \ in sha256_compress()
H A Dsha512-internal.c97 #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41)) macro
137 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i]; in sha512_compress()
/dragonfly/crypto/libressl/crypto/sha/
H A Dsha512.c346 #define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) macro
380 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i]; in sha512_block_data_order()
394 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i]; in sha512_block_data_order()
429 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; in sha512_block_data_order()
441 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; in sha512_block_data_order()
457 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \
H A Dsha256.c143 #define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7)) macro
167 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; in sha256_block_data_order()
179 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; in sha256_block_data_order()
194 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \