Home | History | Annotate | Download | only in opencrypto

Lines Matching defs:co

76 	struct crypt_op co;
90 memset(&co, 0, sizeof(co));
92 co.ses = cs.ses;
93 co.op = COP_ENCRYPT;
94 co.len = tests[i].len;
95 co.src = __UNCONST(&tests[i].plaintx);
96 co.mac = buf;
97 res = ioctl(fd, CIOCCRYPT, &co);
101 if (memcmp(co.mac, tests[i].digest, sizeof(tests[i].digest)))