Home | History | Annotate | Download | only in opencrypto

Lines Matching defs:co

51 	struct crypt_op co;
65 memset(&co, 0, sizeof(co));
66 co.ses = cs.ses;
67 co.op = COP_ENCRYPT;
68 co.len = sizeof(plaintx);
69 co.src = plaintx;
70 co.dst = buf;
71 co.dst_len = sizeof(buf);
72 res = ioctl(fd, CIOCCRYPT, &co);
76 if (memcmp(co.dst, ciphertx, sizeof(ciphertx)))