Home
last modified time | relevance | path

Searched refs:cryptop (Results 1 – 25 of 28) sorted by relevance

12

/f-stack/freebsd/opencrypto/
H A Dcryptodev.h438 struct cryptop { struct
439 TAILQ_ENTRY(cryptop) crp_next;
542 crypto_use_buf(struct cryptop *crp, void *buf, int len) in crypto_use_buf()
548 crypto_use_mbuf(struct cryptop *crp, struct mbuf *m) in crypto_use_mbuf()
560 crypto_use_uio(struct cryptop *crp, struct uio *uio) in crypto_use_uio()
652 extern int crypto_dispatch(struct cryptop *crp);
657 extern void crypto_done(struct cryptop *crp);
661 extern void crypto_destroyreq(struct cryptop *crp);
663 extern void crypto_freereq(struct cryptop *crp);
693 int crypto_apply(struct cryptop *crp, int off, int len,
[all …]
H A Dcrypto.c1261 crp_sanity(struct cryptop *crp) in crp_sanity()
1661 struct cryptop *crp; in crypto_task_invoke()
1664 crp = (struct cryptop *)ctx; in crypto_task_invoke()
1739 struct cryptop *crp2; in crypto_destroyreq()
1786 struct cryptop *
1789 struct cryptop *crp; in crypto_getreq()
1802 crypto_done(struct cryptop *crp) in crypto_done()
1839 struct cryptop *tmp; in crypto_done()
1950 struct cryptop *crp, *submit; in crypto_proc()
2098 struct cryptop *crpt; in crypto_ret_proc()
[all …]
H A Dcryptosoft.c78 int (*swcr_process)(struct swcr_session *, struct cryptop *);
91 swcr_null(struct swcr_session *ses, struct cryptop *crp) in swcr_null()
101 swcr_encdec(struct swcr_session *ses, struct cryptop *crp) in swcr_encdec()
317 swcr_authcompute(struct swcr_session *ses, struct cryptop *crp) in swcr_authcompute()
388 swcr_gmac(struct swcr_session *ses, struct cryptop *crp) in swcr_gmac()
465 swcr_gcm(struct swcr_session *ses, struct cryptop *crp) in swcr_gcm()
648 swcr_ccm_cbc_mac(struct swcr_session *ses, struct cryptop *crp) in swcr_ccm_cbc_mac()
703 swcr_ccm(struct swcr_session *ses, struct cryptop *crp) in swcr_ccm()
874 swcr_eta(struct swcr_session *ses, struct cryptop *crp) in swcr_eta()
894 swcr_compdec(struct swcr_session *ses, struct cryptop *crp) in swcr_compdec()
[all …]
H A Dktls_ocf.c111 ktls_ocf_callback(struct cryptop *crp) in ktls_ocf_callback()
124 ktls_ocf_dispatch(struct ocf_session *os, struct cryptop *crp) in ktls_ocf_dispatch()
165 struct cryptop crp; in ktls_ocf_tls_cbc_encrypt()
325 struct cryptop crp; in ktls_ocf_tls12_gcm_encrypt()
411 struct cryptop crp; in ktls_ocf_tls12_gcm_decrypt()
463 struct cryptop crp; in ktls_ocf_tls13_gcm_encrypt()
H A Dcriov.c593 crypto_copyback(struct cryptop *crp, int off, int size, const void *src) in crypto_copyback()
630 crypto_copydata(struct cryptop *crp, int off, int size, void *dst) in crypto_copydata()
696 crypto_apply(struct cryptop *crp, int off, int len, in crypto_apply()
766 crypto_contiguous_subsegment(struct cryptop *crp, size_t skip, size_t len) in crypto_contiguous_subsegment()
H A Dcryptodev_if.m123 * session is stored as a member of 'struct cryptop'. This routine
145 struct cryptop *op;
/f-stack/freebsd/crypto/ccp/
H A Dccp.h222 struct cryptop *crp) __must_check;
224 struct cryptop *crp) __must_check;
225 int ccp_gcm(struct ccp_queue *sc, struct ccp_session *s, struct cryptop *crp)
227 int ccp_hmac(struct ccp_queue *sc, struct ccp_session *s, struct cryptop *crp)
H A Dccp_hardware.c1205 struct cryptop *crp, int error) in ccp_do_hmac_done()
1252 struct cryptop *crp; in ccp_hmac_done()
1259 ccp_do_hmac(struct ccp_queue *qp, struct ccp_session *s, struct cryptop *crp, in ccp_do_hmac()
1307 ccp_hmac(struct ccp_queue *qp, struct ccp_session *s, struct cryptop *crp) in ccp_hmac()
1336 struct cryptop *crp; in ccp_blkcipher_done()
1352 ccp_collect_iv(struct cryptop *crp, const struct crypto_session_params *csp, in ccp_collect_iv()
1398 ccp_do_xts(struct ccp_queue *qp, struct ccp_session *s, struct cryptop *crp, in ccp_do_xts()
1469 struct cryptop *crp, const struct ccp_completion_ctx *cctx) in ccp_do_blkcipher()
1687 struct cryptop *crp; in ccp_authenc_done()
1835 struct cryptop *crp; in ccp_gcm_done()
[all …]
/f-stack/freebsd/crypto/via/
H A Dpadlock.h79 struct cryptop *crp, const struct crypto_session_params *csp);
84 struct cryptop *crp, const struct crypto_session_params *csp);
H A Dpadlock_cipher.c168 padlock_cipher_alloc(struct cryptop *crp, int *allocated) in padlock_cipher_alloc()
185 padlock_cipher_process(struct padlock_session *ses, struct cryptop *crp, in padlock_cipher_process()
H A Dpadlock.c69 static int padlock_process(device_t, struct cryptop *crp, int hint __unused);
230 padlock_process(device_t dev, struct cryptop *crp, int hint __unused) in padlock_process()
H A Dpadlock_hash.c282 padlock_authcompute(struct padlock_session *ses, struct cryptop *crp) in padlock_authcompute()
394 padlock_hash_process(struct padlock_session *ses, struct cryptop *crp, in padlock_hash_process()
/f-stack/freebsd/crypto/aesni/
H A Daesni.c89 static int aesni_cipher_process(struct aesni_session *ses, struct cryptop *crp);
90 static int aesni_cipher_crypt(struct aesni_session *ses, struct cryptop *crp,
92 static int aesni_cipher_mac(struct aesni_session *ses, struct cryptop *crp,
373 aesni_process(device_t dev, struct cryptop *crp, int hint __unused) in aesni_process()
388 aesni_cipher_alloc(struct cryptop *crp, int start, int length, bool *allocated) in aesni_cipher_alloc()
633 aesni_cipher_process(struct aesni_session *ses, struct cryptop *crp) in aesni_cipher_process()
690 aesni_cipher_crypt(struct aesni_session *ses, struct cryptop *crp, in aesni_cipher_crypt()
830 aesni_cipher_mac(struct aesni_session *ses, struct cryptop *crp, in aesni_cipher_mac()
/f-stack/freebsd/netipsec/
H A Dxform_ipcomp.c93 static int ipcomp_input_cb(struct cryptop *crp);
94 static int ipcomp_output_cb(struct cryptop *crp);
199 struct cryptop *crp; in ipcomp_input()
279 ipcomp_input_cb(struct cryptop *crp) in ipcomp_input_cb()
400 struct cryptop *crp; in ipcomp_output()
525 ipcomp_output_cb(struct cryptop *crp) in ipcomp_output_cb()
H A Dxform_ah.c113 static int ah_input_cb(struct cryptop*);
114 static int ah_output_cb(struct cryptop*);
536 struct cryptop *crp; in ah_input()
685 ah_input_cb(struct cryptop *crp) in ah_input_cb()
841 struct cryptop *crp; in ah_output()
1071 ah_output_cb(struct cryptop *crp) in ah_output_cb()
H A Dxform_esp.c105 static int esp_input_cb(struct cryptop *op);
106 static int esp_output_cb(struct cryptop *crp);
266 struct cryptop *crp; in esp_input()
481 esp_input_cb(struct cryptop *crp) in esp_input_cb()
677 struct cryptop *crp; in esp_output()
966 esp_output_cb(struct cryptop *crp) in esp_output_cb()
/f-stack/freebsd/crypto/armv8/
H A Darmv8_crypto.c91 struct cryptop *);
350 armv8_crypto_process(device_t dev, struct cryptop *crp, int hint __unused) in armv8_crypto_process()
361 armv8_crypto_cipher_alloc(struct cryptop *crp, int start, int length, int *allocated) in armv8_crypto_cipher_alloc()
381 struct cryptop *crp) in armv8_crypto_cipher_process()
/f-stack/freebsd/mips/nlm/dev/sec/
H A Dnlmsec.c80 static int xlp_sec_process(device_t , struct cryptop *, int);
83 static int xlp_get_nsegs(struct cryptop *, unsigned int *);
457 struct cryptop *crp = NULL; in xlp_copyiv()
466 xlp_get_nsegs(struct cryptop *crp, unsigned int *nsegs) in xlp_get_nsegs()
565 xlp_sec_process(device_t dev, struct cryptop *crp, int hint) in xlp_sec_process()
H A Dnlmseclib.h92 struct cryptop *crp;
H A Dnlmseclib.c99 struct cryptop *crp = NULL; in nlm_crypto_form_srcdst_segs()
/f-stack/freebsd/crypto/blake2/
H A Dblake2_cryptodev.c78 struct cryptop *crp);
225 blake2_process(device_t dev, struct cryptop *crp, int hint __unused) in blake2_process()
330 blake2_cipher_process(struct blake2_session *ses, struct cryptop *crp) in blake2_cipher_process()
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dcrypto_os.c142 freebsd_zfs_crypt_done(struct cryptop *crp) in freebsd_zfs_crypt_done()
163 zfs_crypto_dispatch(freebsd_crypt_session_t *session, struct cryptop *crp) in zfs_crypto_dispatch()
330 struct cryptop *crp; in freebsd_crypt_uio()
500 struct cryptop *crp; in freebsd_crypt_uio()
/f-stack/freebsd/sys/
H A Dbus_dma.h115 struct cryptop;
331 struct cryptop *crp, bus_dmamap_callback_t *callback,
/f-stack/freebsd/mips/cavium/cryptocteon/
H A Dcryptocteon.c61 static int cryptocteon_process(device_t, struct cryptop *, int);
245 cryptocteon_process(device_t dev, struct cryptop *crp, int hint) in cryptocteon_process()
/f-stack/freebsd/crypto/openssl/
H A Dossl.c200 ossl_process(device_t dev, struct cryptop *crp, int hint) in ossl_process()

12