Lines Matching refs:state
69 uint32_t state[5],
83 // Copy context->state[] to working vars
84 a = state[0];
85 b = state[1];
86 c = state[2];
87 d = state[3];
88 e = state[4];
112 // Add the working vars back into context.state[]
113 state[0] += a;
114 state[1] += b;
115 state[2] += c;
116 state[3] += d;
117 state[4] += e;
148 // Adds data to the SHA1 context. This will process the data and update the internal state of the context. Keep on