Home
last modified time | relevance | path

Searched defs:cryptop (Results 1 – 2 of 2) sorted by relevance

/openbsd/sys/crypto/
H A Dcryptodev.h151 struct cryptop { struct
152 u_int64_t crp_sid; /* Session ID */
153 int crp_ilen; /* Input data total length */
154 int crp_olen; /* Result total length */
155 int crp_alloctype; /* Type of buf to allocate if needed */
157 int crp_flags;
162 void *crp_buf; /* Data to be processed */
165 struct cryptodesc crp_sdesc[2]; /* Static array for small ops */
166 int crp_ndesc; /* Amount of descriptors to use */
167 int crp_ndescalloc;/* Amount of descriptors allocated */
[all …]
H A Dcrypto.c289 int (*freeses)(u_int64_t), int (*process)(struct cryptop *)) in crypto_register()