(a, b, c, d, x, s, t)
| 43 | return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b) |
| 44 | } |
| 45 | function md5ff (a, b, c, d, x, s, t) { |
| 46 | return md5cmn((b & c) | ((~b) & d), a, b, x, s, t) |
| 47 | } |
| 48 | function md5gg (a, b, c, d, x, s, t) { |
| 49 | return md5cmn((b & d) | (c & (~d)), a, b, x, s, t) |
| 50 | } |