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

  /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 430 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
432 #define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) macro
471 A = T + Sigma0(A) + Maj(A,F[1],F[2]);
476 T = sigma0(F[8+16-1]);
485 A = T + Sigma0(A) + Maj(A,F[1],F[2]);
519 T2 = Sigma0(a) + Maj(a,b,c);
526 s0 = X[(i+1)&0x0f]; s0 = sigma0(s0);
531 T2 = Sigma0(a) + Maj(a,b,c);
547 h = Sigma0(a) + Maj(a,b,c); \
551 s0 = X[(j+1)&0x0f]; s0 = sigma0(s0);
    [all...]

Completed in 166 milliseconds