Lines Matching full:cryp
383 struct crypt_op cryp;
396 memset(&cryp, 0, sizeof(cryp));
398 cryp.ses = sess->ses;
399 cryp.flags = 0;
400 cryp.len = inl;
401 cryp.src = (caddr_t) in;
402 cryp.dst = (caddr_t) out;
403 cryp.mac = 0;
405 cryp.op = ctx->encrypt ? COP_ENCRYPT : COP_DECRYPT;
408 cryp.iv = (caddr_t) ctx->iv;
414 cryp.iv = NULL;
416 if (ioctl(state->d_fd, CIOCCRYPT, &cryp) == -1) {