Searched refs:skcipher_req (Results 1 – 5 of 5) sorted by relevance
| /linux/crypto/ |
| H A D | algif_skcipher.c | 90 err = algif_skcipher_export(sk, &areq->cra_u.skcipher_req); in algif_skcipher_done() 155 skcipher_request_set_tfm(&areq->cra_u.skcipher_req, tfm); in _skcipher_recvmsg() 156 skcipher_request_set_crypt(&areq->cra_u.skcipher_req, areq->tsgl, in _skcipher_recvmsg() 160 err = crypto_skcipher_import(&areq->cra_u.skcipher_req, in _skcipher_recvmsg() 177 skcipher_request_set_callback(&areq->cra_u.skcipher_req, in _skcipher_recvmsg() 182 crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) : in _skcipher_recvmsg() 183 crypto_skcipher_decrypt(&areq->cra_u.skcipher_req); in _skcipher_recvmsg() 192 skcipher_request_set_callback(&areq->cra_u.skcipher_req, in _skcipher_recvmsg() 198 crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) : in _skcipher_recvmsg() 199 crypto_skcipher_decrypt(&areq->cra_u.skcipher_req), in _skcipher_recvmsg() [all …]
|
| /linux/fs/ecryptfs/ |
| H A D | keystore.c | 601 struct skcipher_request *skcipher_req; member 685 s->skcipher_req = skcipher_request_alloc(s->skcipher_tfm, GFP_KERNEL); in ecryptfs_write_tag_70_packet() 686 if (!s->skcipher_req) { in ecryptfs_write_tag_70_packet() 694 skcipher_request_set_callback(s->skcipher_req, in ecryptfs_write_tag_70_packet() 790 skcipher_request_set_crypt(s->skcipher_req, s->src_sg, s->dst_sg, in ecryptfs_write_tag_70_packet() 792 rc = crypto_skcipher_encrypt(s->skcipher_req); in ecryptfs_write_tag_70_packet() 810 skcipher_request_free(s->skcipher_req); in ecryptfs_write_tag_70_packet() 829 struct skcipher_request *skcipher_req; member 966 s->skcipher_req = skcipher_request_alloc(s->skcipher_tfm, GFP_KERNEL); in ecryptfs_parse_tag_70_packet() 967 if (!s->skcipher_req) { in ecryptfs_parse_tag_70_packet() [all …]
|
| /linux/drivers/crypto/intel/qat/qat_common/ |
| H A D | qat_crypto.h | 37 struct skcipher_request *skcipher_req; member
|
| H A D | qat_algs.c | 607 struct skcipher_request *sreq = qat_req->skcipher_req; in qat_alg_update_iv_ctr_mode() 628 struct skcipher_request *sreq = qat_req->skcipher_req; in qat_alg_update_iv_cbc_mode() 665 struct skcipher_request *sreq = qat_req->skcipher_req; in qat_skcipher_alg_callback() 929 u8 *iv = qat_req->skcipher_req->iv; in qat_alg_set_req_iv() 963 qat_req->skcipher_req = req; in qat_alg_skcipher_encrypt() 1030 qat_req->skcipher_req = req; in qat_alg_skcipher_decrypt()
|
| /linux/include/crypto/ |
| H A D | if_alg.h | 110 struct skcipher_request skcipher_req; member
|