Searched defs:sigma1 (Results 1 – 5 of 5) sorted by relevance
/freebsd/crypto/openssl/crypto/sha/ |
H A D | sha256.c | 168 # define sigma1(x) ({ MD32_REG_T ret; \ macro 201 # define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10)) macro
|
H A D | sha512.c | 480 # define sigma1(x) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ macro 501 # define sigma1(x) ({ SHA_LONG64 ret; \ macro 586 # define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro
|
/freebsd/sys/contrib/openzfs/module/icp/algs/sha2/ |
H A D | sha2_generic.c | 69 #define sigma1(x) (rotr32((x), 17) ^ rotr32((x), 19) ^ ((x) >> 10)) macro 143 #define sigma1(x) (rotr64((x), 19) ^ rotr64((x), 61) ^ ((x) >> 6)) macro
|
/freebsd/crypto/krb5/src/lib/crypto/builtin/sha2/ |
H A D | sha512.c | 54 #define sigma1(x) (ROTR(x,19) ^ ROTR(x,61) ^ ((x)>>6)) macro
|
H A D | sha256.c | 76 #define sigma1(x) (ROTR(x,17) ^ ROTR(x,19) ^ ((x)>>10)) macro
|