Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/porting/ext/tinycrypt/src/
Dsha256.c163 #define Sigma1(a)(ROTR((a), 6) ^ ROTR((a), 11) ^ ROTR((a), 25)) macro
196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/
Dsha256.c163 #define Sigma1(a)(ROTR((a), 6) ^ ROTR((a), 11) ^ ROTR((a), 25)) macro
196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
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()
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()