Lines Matching full:state
23 u32 state[8], curlen;
103 /* copy state into S */
105 S[i] = md->state[i];
108 /* copy the state into 512-bits into W[0..15] */
133 md->state[i] = md->state[i] + S[i];
139 /* Initialize the hash state */
144 md->state[0] = 0x6A09E667UL;
145 md->state[1] = 0xBB67AE85UL;
146 md->state[2] = 0x3C6EF372UL;
147 md->state[3] = 0xA54FF53AUL;
148 md->state[4] = 0x510E527FUL;
149 md->state[5] = 0x9B05688CUL;
150 md->state[6] = 0x1F83D9ABUL;
151 md->state[7] = 0x5BE0CD19UL;
156 @param md The hash state
198 @param md The hash state
238 WPA_PUT_BE32(out + (4 * i), md->state[i]);