Searched defs:sigma0 (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/contrib/openzfs/module/icp/algs/sha2/ |
H A D | sha2_generic.c | 68 #define sigma0(x) (rotr32((x), 7) ^ rotr32((x), 18) ^ ((x) >> 3)) macro 142 #define sigma0(x) (rotr64((x), 1) ^ rotr64((x), 8) ^ ((x) >> 7)) macro
|
/freebsd/crypto/krb5/src/lib/crypto/builtin/sha2/ |
H A D | sha512.c | 53 #define sigma0(x) (ROTR(x,1) ^ ROTR(x,8) ^ ((x)>>7)) macro
|
H A D | sha256.c | 75 #define sigma0(x) (ROTR(x,7) ^ ROTR(x,18) ^ ((x)>>3)) macro
|
/freebsd/crypto/openssl/crypto/sha/ |
H A D | sha256.c | 139 # define sigma0(x) (ROTATE((x),25) ^ ROTATE((x),14) ^ ((x)>>3)) macro
|
H A D | sha512.c | 477 # define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) macro
|