Home
last modified time | relevance | path

Searched refs:skcipher_req (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/crypto/
Dalgif_skcipher.c114 skcipher_request_set_tfm(&areq->cra_u.skcipher_req, tfm); in _skcipher_recvmsg()
115 skcipher_request_set_crypt(&areq->cra_u.skcipher_req, areq->tsgl, in _skcipher_recvmsg()
126 skcipher_request_set_callback(&areq->cra_u.skcipher_req, in _skcipher_recvmsg()
130 crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) : in _skcipher_recvmsg()
131 crypto_skcipher_decrypt(&areq->cra_u.skcipher_req); in _skcipher_recvmsg()
140 skcipher_request_set_callback(&areq->cra_u.skcipher_req, in _skcipher_recvmsg()
145 crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) : in _skcipher_recvmsg()
146 crypto_skcipher_decrypt(&areq->cra_u.skcipher_req), in _skcipher_recvmsg()
/Linux-v4.19/fs/ecryptfs/
Dkeystore.c613 struct skcipher_request *skcipher_req; member
700 s->skcipher_req = skcipher_request_alloc(s->skcipher_tfm, GFP_KERNEL); in ecryptfs_write_tag_70_packet()
701 if (!s->skcipher_req) { in ecryptfs_write_tag_70_packet()
709 skcipher_request_set_callback(s->skcipher_req, in ecryptfs_write_tag_70_packet()
842 skcipher_request_set_crypt(s->skcipher_req, s->src_sg, s->dst_sg, in ecryptfs_write_tag_70_packet()
844 rc = crypto_skcipher_encrypt(s->skcipher_req); in ecryptfs_write_tag_70_packet()
864 skcipher_request_free(s->skcipher_req); in ecryptfs_write_tag_70_packet()
884 struct skcipher_request *skcipher_req; member
1020 s->skcipher_req = skcipher_request_alloc(s->skcipher_tfm, GFP_KERNEL); in ecryptfs_parse_tag_70_packet()
1021 if (!s->skcipher_req) { in ecryptfs_parse_tag_70_packet()
[all …]
/Linux-v4.19/include/crypto/
Dif_alg.h116 struct skcipher_request skcipher_req; member