Home | History | Annotate | Download | only in opencrypto

Lines Matching defs:co

233 	struct crypt_op co;
248 memset(&co, 0, sizeof(co));
250 co.ses = cs.ses;
251 co.op = COP_ENCRYPT;
252 co.len = tests[i].len;
253 co.src = __UNCONST(&tests[i].data);
254 co.mac = buf;
255 res = ioctl(fd, CIOCCRYPT, &co);
260 if (memcmp(co.mac, &tests[i].mac, sizeof(tests[i].mac)))