MCPcopy Create free account
hub / github.com/demoth/jake2 / FF

Method FF

qcommon/src/main/java/jake2/qcommon/MD4.java:276–279  ·  view source on GitHub ↗
(int a, int b, int c, int d, int x, int s)

Source from the content-addressed store, hash-verified

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;

Callers 1

transformMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected