Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.55 KB | None | 0 0
  1.  82     MD5_REVERSE_STEP(5, 0x4787c62a, 12);
  2.  83     MD5_REVERSE_STEP(6, 0xa8304613, 17);
  3.  84     MD5_REVERSE_STEP(7, 0xfd469501, 22);
  4.  85     MD5_REVERSE_STEP(11, 0x895cd7be, 22);
  5.  86     MD5_REVERSE_STEP(14, 0xa679438e, 17);
  6.  87
  7.  88     if (((block[14]>>24)&0xff)!='g') continue;
  8.  89     MD5_REVERSE_STEP(15, 0x49b40821, 22);
  9.  90
  10.  91     int rrb = RL(block[15] + FF(Q[Qoff + 15], Q[Qoff + 15 - 1],
  11.  92                                 Q[Qoff + 15 - 2]) + Q[Qoff + 15 - 3] + 0x49b40821, 22);
  12.  93     Q[Qoff + 15 + 1] = rrb + Q[Qoff + 15];
  13.  94
  14.  95
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement