Lines Matching defs:state
12 //SK_MD5_CLEAR_DATA causes all intermediate state to be overwritten with 0's.
19 /** MD5 basic transformation. Transforms state based on block. */
20 static void transform(uint32_t state[4], const uint8_t block[64]);
33 this->state[0] = 0x67452301;
34 this->state[1] = 0xefcdab89;
35 this->state[2] = 0x98badcfe;
36 this->state[3] = 0x10325476;
48 transform(this->state, this->buffer);
55 transform(this->state, &input[inputIndex]);
90 encode(digest.data, this->state);
93 // Clear state.
128 static void transform(uint32_t state[4], const uint8_t block[64]) {
129 uint32_t a = state[0], b = state[1], c = state[2], d = state[3];
206 state[0] += a;
207 state[1] += b;
208 state[2] += c;
209 state[3] += d;