Go to the source code of this file.
|  | 
| #define | F(b,  c,  d)   (d ^ (b & (c ^ d))) | 
|  | 
| #define | G(b,  c,  d)   F (d, b, c) | 
|  | 
| #define | H(b,  c,  d)   (b ^ c ^ d) | 
|  | 
| #define | I(b,  c,  d)   (c ^ (b | ~d)) | 
|  | 
| #define | ROTATE_LEFT(x,  n)   (((x) << (n)) | ((x) >> (32 - (n)))) | 
|  | 
| #define | FF(a,  b,  c,  d,  x,  s,  ac) | 
|  | 
| #define | GG(a,  b,  c,  d,  x,  s,  ac) | 
|  | 
| #define | HH(a,  b,  c,  d,  x,  s,  ac) | 
|  | 
| #define | II(a,  b,  c,  d,  x,  s,  ac) | 
|  | 
| #define | S11   7 | 
|  | 
| #define | S12   12 | 
|  | 
| #define | S13   17 | 
|  | 
| #define | S14   22 | 
|  | 
| #define | S21   5 | 
|  | 
| #define | S22   9 | 
|  | 
| #define | S23   14 | 
|  | 
| #define | S24   20 | 
|  | 
| #define | S31   4 | 
|  | 
| #define | S32   11 | 
|  | 
| #define | S33   16 | 
|  | 
| #define | S34   23 | 
|  | 
| #define | S41   6 | 
|  | 
| #define | S42   10 | 
|  | 
| #define | S43   15 | 
|  | 
| #define | S44   21 | 
|  | 
      
        
          | #define F | ( |  | b, | 
        
          |  |  |  | c, | 
        
          |  |  |  | d | 
        
          |  | ) |  | (d ^ (b & (c ^ d))) | 
      
 
Definition at line 44 of file md5.c.
 
 
      
        
          | #define FF | ( |  | a, | 
        
          |  |  |  | b, | 
        
          |  |  |  | c, | 
        
          |  |  |  | d, | 
        
          |  |  |  | x, | 
        
          |  |  |  | s, | 
        
          |  |  |  | ac | 
        
          |  | ) |  |  | 
      
 
Value:  a += 
F (b, 
c, d) + x + ac;                    
\ } while (0)
#define ROTATE_LEFT(x, n)
Definition at line 55 of file md5.c.
 
 
      
        
          | #define G | ( |  | b, | 
        
          |  |  |  | c, | 
        
          |  |  |  | d | 
        
          |  | ) |  | F (d, b, c) | 
      
 
Definition at line 45 of file md5.c.
 
 
      
        
          | #define GG | ( |  | a, | 
        
          |  |  |  | b, | 
        
          |  |  |  | c, | 
        
          |  |  |  | d, | 
        
          |  |  |  | x, | 
        
          |  |  |  | s, | 
        
          |  |  |  | ac | 
        
          |  | ) |  |  | 
      
 
Value:  a += 
G (b, 
c, d) + x + ac;                    
\ } while (0)
#define ROTATE_LEFT(x, n)
Definition at line 62 of file md5.c.
 
 
      
        
          | #define H | ( |  | b, | 
        
          |  |  |  | c, | 
        
          |  |  |  | d | 
        
          |  | ) |  | (b ^ c ^ d) | 
      
 
Definition at line 46 of file md5.c.
 
 
      
        
          | #define HH | ( |  | a, | 
        
          |  |  |  | b, | 
        
          |  |  |  | c, | 
        
          |  |  |  | d, | 
        
          |  |  |  | x, | 
        
          |  |  |  | s, | 
        
          |  |  |  | ac | 
        
          |  | ) |  |  | 
      
 
Value:  a += 
H (b, 
c, d) + x + ac;                    
\ } while (0)
#define ROTATE_LEFT(x, n)
Definition at line 69 of file md5.c.
 
 
      
        
          | #define I | ( |  | b, | 
        
          |  |  |  | c, | 
        
          |  |  |  | d | 
        
          |  | ) |  | (c ^ (b | ~d)) | 
      
 
Definition at line 47 of file md5.c.
 
 
      
        
          | #define II | ( |  | a, | 
        
          |  |  |  | b, | 
        
          |  |  |  | c, | 
        
          |  |  |  | d, | 
        
          |  |  |  | x, | 
        
          |  |  |  | s, | 
        
          |  |  |  | ac | 
        
          |  | ) |  |  | 
      
 
Value:  a += 
I (b, 
c, d) + x + ac;                    
\ } while (0)
#define ROTATE_LEFT(x, n)
Definition at line 76 of file md5.c.
 
 
      
        
          | #define ROTATE_LEFT | ( |  | x, | 
        
          |  |  |  | n | 
        
          |  | ) |  | (((x) << (n)) | ((x) >> (32 - (n)))) | 
      
 
Definition at line 50 of file md5.c.
 
 
Definition at line 87 of file md5.c.