Home | History | Annotate | Download | only in chc

Lines Matching full:state

38   Initialize the CHC state with a given cipher 
83 Initialize the hash state
84 @param md The hash state you wish to initialize
116 cipher_descriptor[cipher_idx].ecb_encrypt(buf, md->chc.state, key);
127 key <= state
130 state <= state xor T0 xor T1
141 if ((err = cipher_descriptor[cipher_idx].setup(md->chc.state, cipher_blocksize, 0, key)) != CRYPT_OK) {
148 md->chc.state[x] ^= T[0][x] ^ T[1][x];
164 @param md The hash state
189 @param md The hash state
240 XMEMCPY(out, md->chc.state, cipher_blocksize);