Searched refs:Sigma1 (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/src/ |
D | sha256.c | 163 #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/ |
D | sha256.c | 163 #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/ |
D | sha256-internal.c | 76 #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()
|
D | sha512-internal.c | 97 #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()
|