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

Function crypt_kop_from_32

freebsd/opencrypto/cryptodev.c:273–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

271}
272
273static void
274crypt_kop_from_32(const struct crypt_kop32 *from, struct crypt_kop *to)
275{
276 int i;
277
278 CP(*from, *to, crk_op);
279 CP(*from, *to, crk_status);
280 CP(*from, *to, crk_iparams);
281 CP(*from, *to, crk_oparams);
282 CP(*from, *to, crk_crid);
283 for (i = 0; i < CRK_MAXPARAM; i++)
284 crparam_from_32(&from->crk_param[i], &to->crk_param[i]);
285}
286
287static void
288crypt_kop_to_32(const struct crypt_kop *from, struct crypt_kop32 *to)

Callers 1

crypto_ioctlFunction · 0.85

Calls 1

crparam_from_32Function · 0.85

Tested by

no test coverage detected