Lines Matching defs:ictx
88 const struct md5_state *ictx = in;
93 op->byte_count = ictx->byte_count & ~0x3F;
94 op->len = ictx->byte_count & 0x3F;
96 memcpy(op->buf, ictx->block, op->len);
99 op->hash[i] = ictx->hash[i];
131 const struct sha1_state *ictx = in;
136 op->byte_count = ictx->count & ~0x3F;
137 op->len = ictx->count & 0x3F;
139 memcpy(op->buf, ictx->buffer, op->len);
142 op->hash[i] = ictx->state[i];