Home | History | Annotate | Download | only in _sha3

Lines Matching defs:hash_state

141     SHA3_state hash_state;
199 res = Keccak_HashInitialize_SHA3_224(&self->hash_state);
201 res = Keccak_HashInitialize_SHA3_256(&self->hash_state);
203 res = Keccak_HashInitialize_SHA3_384(&self->hash_state);
205 res = Keccak_HashInitialize_SHA3_512(&self->hash_state);
208 res = Keccak_HashInitialize(&self->hash_state, 1152, 448, 224, 0x01);
210 res = Keccak_HashInitialize(&self->hash_state, 1088, 512, 256, 0x01);
212 res = Keccak_HashInitialize(&self->hash_state, 832, 768, 384, 0x01);
214 res = Keccak_HashInitialize(&self->hash_state, 576, 1024, 512, 0x01);
217 res = Keccak_HashInitialize_SHAKE128(&self->hash_state);
219 res = Keccak_HashInitialize_SHAKE256(&self->hash_state);
233 res = SHA3_process(&self->hash_state, buf.buf, buf.len * 8);
237 res = SHA3_process(&self->hash_state, buf.buf, buf.len * 8);
240 res = SHA3_process(&self->hash_state, buf.buf, buf.len * 8);
296 SHA3_copystate(newobj->hash_state, self->hash_state);
317 SHA3_copystate(temp, self->hash_state);
325 self->hash_state.fixedOutputLength / 8);
345 SHA3_copystate(temp, self->hash_state);
353 self->hash_state.fixedOutputLength / 8);
387 res = SHA3_process(&self->hash_state, buf.buf, buf.len * 8);
392 res = SHA3_process(&self->hash_state, buf.buf, buf.len * 8);
395 res = SHA3_process(&self->hash_state, buf.buf, buf.len * 8);
423 int rate = self->hash_state.sponge.rate;
464 return PyLong_FromLong(self->hash_state.fixedOutputLength / 8);
471 int capacity = 1600 - self->hash_state.sponge.rate;
479 unsigned int rate = self->hash_state.sponge.rate;
487 suffix[0] = self->hash_state.delimitedSuffix;
613 SHA3_copystate(temp, self->hash_state);