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

Function crypt_aead_from_32

freebsd/opencrypto/cryptodev.c:223–238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221}
222
223static void
224crypt_aead_from_32(const struct crypt_aead32 *from, struct crypt_aead *to)
225{
226
227 CP(*from, *to, ses);
228 CP(*from, *to, op);
229 CP(*from, *to, flags);
230 CP(*from, *to, len);
231 CP(*from, *to, aadlen);
232 CP(*from, *to, ivlen);
233 PTRIN_CP(*from, *to, src);
234 PTRIN_CP(*from, *to, dst);
235 PTRIN_CP(*from, *to, aad);
236 PTRIN_CP(*from, *to, tag);
237 PTRIN_CP(*from, *to, iv);
238}
239
240static void
241crypt_aead_to_32(const struct crypt_aead *from, struct crypt_aead32 *to)

Callers 1

crypto_ioctlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected