Lines Matching refs:skcipher_request

40 struct skcipher_request {  struct
154 int (*encrypt)(struct skcipher_request *req);
155 int (*decrypt)(struct skcipher_request *req);
156 int (*export)(struct skcipher_request *req, void *out);
157 int (*import)(struct skcipher_request *req, const void *in);
221 char __##name##_desc[sizeof(struct skcipher_request) + \
226 struct skcipher_request *name = (void *)__##name##_desc
669 struct skcipher_request *req) in crypto_skcipher_reqtfm()
675 struct skcipher_request *req) in crypto_sync_skcipher_reqtfm()
693 int crypto_skcipher_encrypt(struct skcipher_request *req);
706 int crypto_skcipher_decrypt(struct skcipher_request *req);
724 int crypto_skcipher_export(struct skcipher_request *req, void *out);
739 int crypto_skcipher_import(struct skcipher_request *req, const void *in);
810 static inline void skcipher_request_set_tfm(struct skcipher_request *req, in skcipher_request_set_tfm()
816 static inline void skcipher_request_set_sync_tfm(struct skcipher_request *req, in skcipher_request_set_sync_tfm()
822 static inline struct skcipher_request *skcipher_request_cast( in skcipher_request_cast()
825 return container_of(req, struct skcipher_request, base); in skcipher_request_cast()
839 static inline struct skcipher_request *skcipher_request_alloc_noprof( in skcipher_request_alloc_noprof()
842 struct skcipher_request *req; in skcipher_request_alloc_noprof()
844 req = kmalloc_noprof(sizeof(struct skcipher_request) + in skcipher_request_alloc_noprof()
858 static inline void skcipher_request_free(struct skcipher_request *req) in skcipher_request_free()
863 static inline void skcipher_request_zero(struct skcipher_request *req) in skcipher_request_zero()
895 static inline void skcipher_request_set_callback(struct skcipher_request *req, in skcipher_request_set_callback()
922 struct skcipher_request *req, in skcipher_request_set_crypt()