Searched defs:S1 (Results 1 - 5 of 5) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Dsha256.c103 #define S1(x) (ror ((x), 17) ^ ror ((x), 19) ^ ((x) >> 10)) /* (4.7) */ macro
173 w[i] = S1(w[i-2]) + w[i-7] + S0(w[i-15]) + w[i-16];
192 #undef S1 macro
H A Dsha512.c193 #define S1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro
196 w[t] = S1 (w[t - 2]) + w[t - 7] + S0 (w[t - 15]) + w[t - 16];
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dsha256.c103 #define S1(x) (ror ((x), 17) ^ ror ((x), 19) ^ ((x) >> 10)) /* (4.7) */ macro
173 w[i] = S1(w[i-2]) + w[i-7] + S0(w[i-15]) + w[i-16];
192 #undef S1 macro
H A Dsha512.c191 #define S1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro
194 w[t] = S1 (w[t - 2]) + w[t - 7] + S0 (w[t - 15]) + w[t - 16];
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSSL.c148 uchar_t *S1, *S2; local
157 S1 = NULL;
165 S1 = secret;
166 S2 = secret + (secretlen / 2); /* Possible overlap of S1 and S2. */
174 MD5Update(&md5_ctx, S1, L_S);
176 S1 = md5_digested_key;
187 * PRF(secret, label, seed) = P_MD5(S1, label + seed) XOR
193 P_MD5(S1, L_S1, label, labellen, rand1, rand1len, rand2, rand2len,

Completed in 33 milliseconds