HomeSort by relevance Sort by last modified time
    Searched refs:sigma1 (Results 1 - 4 of 4) sorted by null

  /netvirt/usr/src/grub/grub-0.95/stage2/
zfs_sha256.c 48 #define SIGMA1(x) (Rot32(x, 6) ^ Rot32(x, 11) ^ Rot32(x, 25))
50 #define sigma1(x) (Rot32(x, 17) ^ Rot32(x, 19) ^ ((x) >> 10)) macro
80 W[t] = sigma1(W[t - 2]) + W[t - 7] +
87 T1 = h + SIGMA1(e) + Ch(e, f, g) + SHA256_K[t] + W[t];
  /netvirt/usr/src/uts/common/fs/zfs/
sha256.c 52 #define SIGMA1(x) (Rot32(x, 6) ^ Rot32(x, 11) ^ Rot32(x, 25))
54 #define sigma1(x) (Rot32(x, 17) ^ Rot32(x, 19) ^ ((x) >> 10)) macro
84 W[t] = sigma1(W[t - 2]) + W[t - 7] +
91 T1 = h + SIGMA1(e) + Ch(e, f, g) + SHA256_K[t] + W[t];
  /netvirt/usr/src/common/openssl/crypto/sha/
sha256.c 149 #define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7))
151 #define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10)) macro
177 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
192 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
202 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1);
205 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
220 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
226 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1); \
sha512.c 343 #define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41))
345 #define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro
383 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
392 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1);
395 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
411 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \
417 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1); \

Completed in 480 milliseconds