Home | History | Annotate | Download | only in hashes

Lines Matching full:state

84     /* copy state */
85 a = md->md4.state[0];
86 b = md->md4.state[1];
87 c = md->md4.state[2];
88 d = md->md4.state[3];
90 /* copy the state into 512-bits into W[0..15] */
150 /* Update our state */
151 md->md4.state[0] = md->md4.state[0] + a;
152 md->md4.state[1] = md->md4.state[1] + b;
153 md->md4.state[2] = md->md4.state[2] + c;
154 md->md4.state[3] = md->md4.state[3] + d;
170 Initialize the hash state
171 @param md The hash state you wish to initialize
177 md->md4.state[0] = 0x67452301UL;
178 md->md4.state[1] = 0xefcdab89UL;
179 md->md4.state[2] = 0x98badcfeUL;
180 md->md4.state[3] = 0x10325476UL;
188 @param md The hash state
197 @param md The hash state
241 STORE32L(md->md4.state[i], out+(4*i));