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

  /external/dropbear/libtomcrypt/src/hashes/sha2/
sha256.c 63 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
98 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
110 t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i]; \
sha512.c 88 #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41))
120 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
133 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
  /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];
322 private long Sigma1(
  /external/openssl/crypto/sha/
sha256.c 142 #define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7))
144 #define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10)) macro
166 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
175 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1);
178 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i];
193 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
199 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1); \
sha512.c 431 #define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41))
433 #define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro
469 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
477 T += sigma1(F[8+16-14]);
483 T += F[7] + Sigma1(E) + Ch(E,F[5],F[6]) + K512[i];
518 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
527 s1 = X[(i+14)&0x0f]; s1 = sigma1(s1);
530 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i];
546 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \
552 s1 = X[(j+14)&0x0f]; s1 = sigma1(s1);
    [all...]
  /external/wpa_supplicant/
sha256.c 223 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
254 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
sha256.c 226 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25))
257 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \

Completed in 205 milliseconds