(int a, int b, int c, int d, int x, int s)
| 274 | // The basic MD4 atomic functions. |
| 275 | |
| 276 | private int FF(int a, int b, int c, int d, int x, int s) { |
| 277 | int t = a + ((b & c) | (~b & d)) + x; |
| 278 | return t << s | t >>> (32 - s); |
| 279 | } |
| 280 | |
| 281 | private int GG(int a, int b, int c, int d, int x, int s) { |
| 282 | int t = a + ((b & (c | d)) | (c & d)) + x + 0x5A827999; |