| /src/external/bsd/wpa/dist/src/crypto/ |
| sha256-internal.c | 76 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) 104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
|
| sha512-internal.c | 97 #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41)) 134 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
|
| /src/crypto/external/bsd/openssl/dist/crypto/sha/ |
| sha256.c | 138 # define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7)) 140 # define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10)) macro 169 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; 185 s1 = sigma1(s1); 188 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; 215 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \ 221 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1); \
|
| sha512.c | 476 # define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) 478 # define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro 517 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i]; 524 T += sigma1(F[8 + 16 - 14]); 530 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i]; 575 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i]; 591 s1 = sigma1(s1); 594 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i]; 621 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \ 627 s1 = X[(j+14)&0x0f]; s1 = sigma1(s1); [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/sha/ |
| sha256.c | 164 #define Sigma1(x) ({ MD32_REG_T ret; \ 172 #define sigma1(x) ({ MD32_REG_T ret; \ macro 198 #ifndef Sigma1 199 #define Sigma1(x) (ROTATE((x), 26) ^ ROTATE((x), 21) ^ ROTATE((x), 7)) 204 #ifndef sigma1 205 #define sigma1(x) (ROTATE((x), 15) ^ ROTATE((x), 13) ^ ((x) >> 10)) macro 238 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; 254 s1 = sigma1(s1); 257 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; 284 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; [all...] |
| sha512.c | 458 #define Sigma1(x) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ 474 #define sigma1(x) ({ SHA_LONG64 ret; unsigned int *r = (unsigned int *)(&(ret)); \ macro 487 #define Sigma1(x) ({ SHA_LONG64 ret; \ 495 #define sigma1(x) ({ SHA_LONG64 ret; \ macro 561 #ifndef Sigma1 562 #define Sigma1(x) (ROTR((x), 14) ^ ROTR((x), 18) ^ ROTR((x), 41)) 567 #ifndef sigma1 568 #define sigma1(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ ((x) >> 6)) macro 612 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i]; 619 T += sigma1(F[8 + 16 - 14]) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| sha256.c | 48 #define Sigma1(x) (ROTR(x,6) ^ ROTR(x,11) ^ ROTR(x,25)) 50 #define sigma1(x) (ROTR(x,17) ^ ROTR(x,19) ^ ((x)>>10)) macro 115 data[i] = sigma1(data[i-2]) + data[i-7] + 121 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_256[i] + data[i];
|
| sha512.c | 48 #define Sigma1(x) (ROTR(x,14) ^ ROTR(x,18) ^ ROTR(x,41)) 50 #define sigma1(x) (ROTR(x,19) ^ ROTR(x,61) ^ ((x)>>6)) macro 139 data[i] = sigma1(data[i-2]) + data[i-7] + 145 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_512[i] + data[i];
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/sha/ |
| sha256.c | 159 # define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7)) 161 # define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10)) macro 190 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; 206 s1 = sigma1(s1); 209 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; 236 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \ 242 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1); \
|
| sha512.c | 489 # define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) 491 # define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro 530 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i]; 537 T += sigma1(F[8 + 16 - 14]); 543 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i]; 588 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i]; 604 s1 = sigma1(s1); 607 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i]; 634 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \ 640 s1 = X[(j+14)&0x0f]; s1 = sigma1(s1); [all...] |