OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:S23
(Results
1 - 5
of
5
) sorted by null
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/digests/
MD4Digest.java
141
private static final int
S23
= 9;
221
c = rotateLeft(c + G(d, a, b) + X[ 8] + 0x5a827999,
S23
);
225
c = rotateLeft(c + G(d, a, b) + X[ 9] + 0x5a827999,
S23
);
229
c = rotateLeft(c + G(d, a, b) + X[10] + 0x5a827999,
S23
);
233
c = rotateLeft(c + G(d, a, b) + X[11] + 0x5a827999,
S23
);
MD5Digest.java
137
private static final int
S23
= 14;
233
c = rotateLeft(c + G(d, a, b) + X[11] + 0x265e5a51,
S23
) + d;
237
c = rotateLeft(c + G(d, a, b) + X[15] + 0xd8a1e681,
S23
) + d;
241
c = rotateLeft(c + G(d, a, b) + X[ 3] + 0xf4d50d87,
S23
) + d;
245
c = rotateLeft(c + G(d, a, b) + X[ 7] + 0x676f02d9,
S23
) + d;
/external/dropbear/libtomcrypt/src/hashes/
md4.c
44
#define
S23
9
116
GG (c, d, a, b, x[ 8],
S23
); /* 19 */
120
GG (c, d, a, b, x[ 9],
S23
); /* 23 */
124
GG (c, d, a, b, x[10],
S23
); /* 27 */
128
GG (c, d, a, b, x[11],
S23
); /* 31 */
/external/quake/quake/src/QW/client/
md4.c
84
#define
S23
9
216
GG (c, d, a, b, x[ 8],
S23
); /* 19 */
220
GG (c, d, a, b, x[ 9],
S23
); /* 23 */
224
GG (c, d, a, b, x[10],
S23
); /* 27 */
228
GG (c, d, a, b, x[11],
S23
); /* 31 */
/external/ppp/pppd/
md5.c
234
#define
S23
14
238
GG ( c, d, a, b, in[11],
S23
, UL( 643717713)); /* 19 */
242
GG ( c, d, a, b, in[15],
S23
, UL(3634488961)); /* 23 */
246
GG ( c, d, a, b, in[ 3],
S23
, UL(4107603335)); /* 27 */
250
GG ( c, d, a, b, in[ 7],
S23
, UL(1735328473)); /* 31 */
Completed in 241 milliseconds