Home
last modified time | relevance | path

Searched defs:Sigma0 (Results 1 – 11 of 11) sorted by relevance

/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dsha512-internal.c96 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
Dsha256-internal.c75 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) macro
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dsha512-internal.c96 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
Dsha256-internal.c75 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) macro
/third_party/f2fs-tools/tools/
Dsha512.c88 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
/third_party/openssl/crypto/sha/
Dsha256.c137 # define Sigma0(x) (ROTATE((x),30) ^ ROTATE((x),19) ^ ROTATE((x),10)) macro
Dsha512.c475 # define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39)) macro
/third_party/python/Modules/
Dsha256module.c123 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) macro
Dsha512module.c111 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) macro
/third_party/openssl/ohos_lite/crypto/sha/
Dsha512.c488 # define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39)) macro
/third_party/node/deps/npm/node_modules/tweetnacl/
Dnacl.js522 function Sigma0(x) { return xor64(R(x,28), R(x,34), R(x,39)); } class