Searched refs:lshift (Results 1 – 1 of 1) sorted by relevance
/crypto/ |
D | md4.c | 42 static inline u32 lshift(u32 x, unsigned int s) in lshift() function 63 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) 64 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (u32)0x5A827999,s)) 65 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (u32)0x6ED9EBA1,s))
|