Lines Matching defs:state
50 MD5_INT32 state[4], curlen;
132 /* copy the state into 512-bits into W[0..15] */
137 /* copy state */
138 a = md5->state[0];
139 b = md5->state[1];
140 c = md5->state[2];
141 d = md5->state[3];
208 md5->state[0] = md5->state[0] + a;
209 md5->state[1] = md5->state[1] + b;
210 md5->state[2] = md5->state[2] + c;
211 md5->state[3] = md5->state[3] + d;
216 Initialize the hash state
217 @param md5 The hash state you wish to initialize
223 md5->state[0] = 0x67452301UL;
224 md5->state[1] = 0xefcdab89UL;
225 md5->state[2] = 0x98badcfeUL;
226 md5->state[3] = 0x10325476UL;
233 @param md5 The hash state
269 @param md5 The hash state
310 STORE32L(md5->state[i], out+(4*i));
331 void *state = PyModule_GetState(module);
332 assert(state != NULL);
333 return (MD5State *)state;
430 Update this hash object's state with the provided string.
561 MD5State *state = md5_get_state(module);
562 Py_VISIT(state->md5_type);
569 MD5State *state = md5_get_state(module);
570 Py_CLEAR(state->md5_type);