MCPcopy Create free account
hub / github.com/F-Stack/f-stack / armv8_crypto_process

Function armv8_crypto_process

freebsd/crypto/armv8/armv8_crypto.c:349–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

347}
348
349static int
350armv8_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
360static uint8_t *
361armv8_crypto_cipher_alloc(struct cryptop *crp, int start, int length, int *allocated)

Callers

nothing calls this directly

Calls 3

crypto_doneFunction · 0.85

Tested by

no test coverage detected