| 347 | } |
| 348 | |
| 349 | static int |
| 350 | armv8_crypto_process(device_t dev, struct cryptop *crp, int hint __unused) |
| 351 | { |
| 352 | struct armv8_crypto_session *ses; |
| 353 | |
| 354 | ses = crypto_get_driver_session(crp->crp_session); |
| 355 | crp->crp_etype = armv8_crypto_cipher_process(ses, crp); |
| 356 | crypto_done(crp); |
| 357 | return (0); |
| 358 | } |
| 359 | |
| 360 | static uint8_t * |
| 361 | armv8_crypto_cipher_alloc(struct cryptop *crp, int start, int length, int *allocated) |
nothing calls this directly
no test coverage detected