HomeSort by relevance Sort by last modified time
    Searched defs:Sigma0 (Results 1 - 7 of 7) sorted by null

  /external/dropbear/libtomcrypt/src/hashes/sha2/
sha256.c 62 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
99 t1 = Sigma0(a) + Maj(a, b, c); \
111 t1 = Sigma0(a) + Maj(a, b, c); \
sha512.c 87 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39))
121 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]);
134 t1 = Sigma0(a) + Maj(a, b, c); \
  /external/wpa_supplicant_8/src/crypto/
sha256-internal.c 72 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
105 t1 = Sigma0(a) + Maj(a, b, c); \
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
LongDigest.java 209 W[t] = Sigma1(W[t - 2]) + W[t - 7] + Sigma0(W[t - 15]) + W[t - 16];
316 private long Sigma0(
  /external/openssl/crypto/sha/
sha256.c 141 #define Sigma0(x) (ROTATE((x),30) ^ ROTATE((x),19) ^ ROTATE((x),10))
143 #define sigma0(x) (ROTATE((x),25) ^ ROTATE((x),14) ^ ((x)>>3)) macro
167 T2 = Sigma0(a) + Maj(a,b,c);
174 s0 = X[(i+1)&0x0f]; s0 = sigma0(s0);
179 T2 = Sigma0(a) + Maj(a,b,c);
194 h = Sigma0(a) + Maj(a,b,c); \
198 s0 = X[(i+1)&0x0f]; s0 = sigma0(s0); \
sha512.c 386 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
388 #define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) macro
427 A = T + Sigma0(A) + Maj(A,F[1],F[2]);
432 T = sigma0(F[8+16-1]);
441 A = T + Sigma0(A) + Maj(A,F[1],F[2]);
475 T2 = Sigma0(a) + Maj(a,b,c);
482 s0 = X[(i+1)&0x0f]; s0 = sigma0(s0);
487 T2 = Sigma0(a) + Maj(a,b,c);
503 h = Sigma0(a) + Maj(a,b,c); \
507 s0 = X[(j+1)&0x0f]; s0 = sigma0(s0);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
sha256.c 225 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22))
258 t1 = Sigma0(a) + Maj(a, b, c); \

Completed in 144 milliseconds