| 1669 | } |
| 1670 | |
| 1671 | int __must_check |
| 1672 | ccp_blkcipher(struct ccp_queue *qp, struct ccp_session *s, struct cryptop *crp) |
| 1673 | { |
| 1674 | struct ccp_completion_ctx ctx; |
| 1675 | |
| 1676 | ctx.callback_fn = ccp_blkcipher_done; |
| 1677 | ctx.session = s; |
| 1678 | ctx.callback_arg = crp; |
| 1679 | |
| 1680 | return (ccp_do_blkcipher(qp, s, crp, &ctx)); |
| 1681 | } |
| 1682 | |
| 1683 | static void |
| 1684 | ccp_authenc_done(struct ccp_queue *qp, struct ccp_session *s, void *vcrp, |
no test coverage detected