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

  /onnv/onnv-gate/usr/src/common/crypto/sha2/
sha2.c 114 #define SIGMA1(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ SHR((x), 6))
466 w0 = SIGMA1(w14) + w9 + SIGMA0(w1) + w0;
468 w1 = SIGMA1(w15) + w10 + SIGMA0(w2) + w1;
470 w2 = SIGMA1(w0) + w11 + SIGMA0(w3) + w2;
472 w3 = SIGMA1(w1) + w12 + SIGMA0(w4) + w3;
474 w4 = SIGMA1(w2) + w13 + SIGMA0(w5) + w4;
476 w5 = SIGMA1(w3) + w14 + SIGMA0(w6) + w5;
478 w6 = SIGMA1(w4) + w15 + SIGMA0(w7) + w6;
480 w7 = SIGMA1(w5) + w0 + SIGMA0(w8) + w7;
482 w8 = SIGMA1(w6) + w1 + SIGMA0(w9) + w8
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/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];
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
sha256.c 49 #define SIGMA1(x) (Rot32(x, 6) ^ Rot32(x, 11) ^ Rot32(x, 25))
51 #define sigma1(x) (Rot32(x, 17) ^ Rot32(x, 19) ^ ((x) >> 10)) macro
81 W[t] = sigma1(W[t - 2]) + W[t - 7] +
88 T1 = h + SIGMA1(e) + Ch(e, f, g) + SHA256_K[t] + W[t];

Completed in 1919 milliseconds