| 1304 | } |
| 1305 | |
| 1306 | int __must_check |
| 1307 | ccp_hmac(struct ccp_queue *qp, struct ccp_session *s, struct cryptop *crp) |
| 1308 | { |
| 1309 | struct ccp_completion_ctx ctx; |
| 1310 | |
| 1311 | ctx.callback_fn = ccp_hmac_done; |
| 1312 | ctx.callback_arg = crp; |
| 1313 | ctx.session = s; |
| 1314 | |
| 1315 | return (ccp_do_hmac(qp, s, crp, &ctx)); |
| 1316 | } |
| 1317 | |
| 1318 | static void |
| 1319 | ccp_byteswap(char *data, size_t len) |
no test coverage detected