Home | History | Annotate | Download | only in opencrypto

Lines Matching defs:co

47 	struct crypt_op co;
61 memset(&co, 0, sizeof(co));
62 co.ses = cs.ses;
63 co.op = COP_ENCRYPT;
64 co.len = sizeof(plaintx);
65 co.src = plaintx;
66 co.dst = buf;
67 co.dst_len = sizeof(buf);
68 res = ioctl(fd, CIOCCRYPT, &co);
72 if (memcmp(co.dst, plaintx, sizeof(plaintx)))