ROTR 49 lib/crypto/sha256.c #define Sigma0(x) (ROTR(x,2) ^ ROTR(x,13) ^ ROTR(x,22)) ROTR 50 lib/crypto/sha256.c #define Sigma1(x) (ROTR(x,6) ^ ROTR(x,11) ^ ROTR(x,25)) ROTR 51 lib/crypto/sha256.c #define sigma0(x) (ROTR(x,7) ^ ROTR(x,18) ^ ((x)>>3)) ROTR 52 lib/crypto/sha256.c #define sigma1(x) (ROTR(x,17) ^ ROTR(x,19) ^ ((x)>>10)) ROTR 48 source4/heimdal/lib/hcrypto/sha256.c #define Sigma0(x) (ROTR(x,2) ^ ROTR(x,13) ^ ROTR(x,22)) ROTR 49 source4/heimdal/lib/hcrypto/sha256.c #define Sigma1(x) (ROTR(x,6) ^ ROTR(x,11) ^ ROTR(x,25)) ROTR 50 source4/heimdal/lib/hcrypto/sha256.c #define sigma0(x) (ROTR(x,7) ^ ROTR(x,18) ^ ((x)>>3)) ROTR 51 source4/heimdal/lib/hcrypto/sha256.c #define sigma1(x) (ROTR(x,17) ^ ROTR(x,19) ^ ((x)>>10))