Searched defs:sigma0 (Results 1 – 4 of 4) sorted by relevance
/third_party/openssl/crypto/sha/ |
D | sha256.c | 139 # define sigma0(x) (ROTATE((x),25) ^ ROTATE((x),14) ^ ((x)>>3)) macro
|
D | sha512.c | 477 # define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) macro
|
/third_party/openssl/ohos_lite/crypto/sha/ |
D | sha512.c | 490 # define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) macro
|
/third_party/node/deps/npm/node_modules/tweetnacl/ |
D | nacl.js | 524 function sigma0(x) { return xor64(R(x, 1), R(x, 8), shr64(x,7)); } function
|