Home | History | Annotate | Download | only in opencrypto

Lines Matching defs:idat

91 	unsigned char iv[EALG_MAX_BLOCK_LEN], blk[EALG_MAX_BLOCK_LEN], *idat;
270 * Warning: idat may point to garbage here, but
274 idat = mtod(m, unsigned char *) + k;
280 idat);
283 idat);
288 idat[j] ^= ivp[j];
290 exf->encrypt(sw->sw_kschedule, idat);
291 ivp = idat;
298 memcpy(piv, idat, blks);
300 memcpy(iv, idat, blks);
302 exf->decrypt(sw->sw_kschedule, idat);
306 idat[j] ^= ivp[j];
314 idat += blks;
403 * Warning: idat may point to garbage here, but
407 idat = ((char *)uio->uio_iov[ind].iov_base) + k;
414 idat);
417 idat);
422 idat[j] ^= ivp[j];
424 exf->encrypt(sw->sw_kschedule, idat);
425 ivp = idat;
432 memcpy(piv, idat, blks);
434 memcpy(iv, idat, blks);
436 exf->decrypt(sw->sw_kschedule, idat);
440 idat[j] ^= ivp[j];
448 idat += blks;