Home | History | Annotate | Download | only in opencrypto

Lines Matching defs:co

144 	struct crypt_op co;
162 memset(&co, 0, sizeof(co));
164 co.ses = cs.ses;
165 co.op = COP_ENCRYPT;
166 co.len = tests[i].len;
167 co.src = __UNCONST(&tests[i].data);
168 co.mac = buf;
169 res = ioctl(fd, CIOCCRYPT, &co);
173 if (memcmp(co.mac, tests[i].mac, sizeof(tests[i].mac)))