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

  /onnv/onnv-gate/usr/src/common/crypto/sha2/amd64/
sha512-x86_64.pl 65 my ($code, $func, $TABLE, $SZ, @Sigma0, @Sigma1, @sigma0, @sigma1, $rounds,
90 @Sigma0=(28,34,39);
92 @sigma0=(1, 8, 7);
102 @Sigma0=( 2,13,22);
104 @sigma0=( 7,18, 3);
149 ror \$$Sigma0[0],$h
150 ror \$$Sigma0[1],$a0
155 ror \$`$Sigma0[2]-$Sigma0[1]`,$a
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
zfs_sha256.c 47 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22))
49 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3)) macro
81 sigma0(W[t - 15]) + W[t - 16];
88 T2 = SIGMA0(a) + Maj(a, b, c);
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
sha256.c 48 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22))
50 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3)) macro
82 sigma0(W[t - 15]) + W[t - 16];
89 T2 = SIGMA0(a) + Maj(a, b, c);
  /onnv/onnv-gate/usr/src/common/openssl/crypto/sha/
sha256.c 148 #define Sigma0(x) (ROTATE((x),30) ^ ROTATE((x),19) ^ ROTATE((x),10))
150 #define sigma0(x) (ROTATE((x),25) ^ ROTATE((x),14) ^ ((x)>>3)) macro
178 T2 = Sigma0(a) + Maj(a,b,c);
193 T2 = Sigma0(a) + Maj(a,b,c);
201 s0 = X[(i+1)&0x0f]; s0 = sigma0(s0);
206 T2 = Sigma0(a) + Maj(a,b,c);
221 h = Sigma0(a) + Maj(a,b,c); \
225 s0 = X[(i+1)&0x0f]; s0 = sigma0(s0); \
sha512.c 342 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
344 #define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) macro
384 T2 = Sigma0(a) + Maj(a,b,c);
391 s0 = X[(i+1)&0x0f]; s0 = sigma0(s0);
396 T2 = Sigma0(a) + Maj(a,b,c);
412 h = Sigma0(a) + Maj(a,b,c); \
416 s0 = X[(i+1)&0x0f]; s0 = sigma0(s0); \

Completed in 360 milliseconds