Searched defs:SIGMA1_256 (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dzfs_sha256.c54 #define SIGMA1_256(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ ((x) >> 10)) macro
137 W[t] = SIGMA1_256(W[t - 2]) + W[t - 7] +
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dsha256.c55 #define SIGMA1_256(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ ((x) >> 10)) macro
138 W[t] = SIGMA1_256(W[t - 2]) + W[t - 7] +
/illumos-gate/usr/src/common/crypto/sha2/
H A Dsha2.c105 #define SIGMA1_256(x) (ROTR((x), 17) ^ ROTR((x), 19) ^ SHR((x), 10)) macro
253 w0 = SIGMA1_256(w14) + w9 + SIGMA0_256(w1) + w0;
255 w1 = SIGMA1_256(w15) + w10 + SIGMA0_256(w2) + w1;
257 w2 = SIGMA1_256(w0) + w11 + SIGMA0_256(w3) + w2;
259 w3 = SIGMA1_256(w1) + w12 + SIGMA0_256(w4) + w3;
261 w4 = SIGMA1_256(w2) + w13 + SIGMA0_256(w5) + w4;
263 w5 = SIGMA1_256(w3) + w14 + SIGMA0_256(w6) + w5;
265 w6 = SIGMA1_256(w4) + w15 + SIGMA0_256(w7) + w6;
267 w7 = SIGMA1_256(w5) + w0 + SIGMA0_256(w8) + w7;
269 w8 = SIGMA1_256(w
[all...]

Completed in 74 milliseconds