Lines Matching refs:akcipher_request
33 struct akcipher_request { struct
93 int (*sign)(struct akcipher_request *req);
94 int (*verify)(struct akcipher_request *req);
95 int (*encrypt)(struct akcipher_request *req);
96 int (*decrypt)(struct akcipher_request *req);
161 static inline void akcipher_request_set_tfm(struct akcipher_request *req, in akcipher_request_set_tfm()
168 struct akcipher_request *req) in crypto_akcipher_reqtfm()
193 static inline struct akcipher_request *akcipher_request_alloc( in akcipher_request_alloc()
196 struct akcipher_request *req; in akcipher_request_alloc()
210 static inline void akcipher_request_free(struct akcipher_request *req) in akcipher_request_free()
226 static inline void akcipher_request_set_callback(struct akcipher_request *req, in akcipher_request_set_callback()
248 static inline void akcipher_request_set_crypt(struct akcipher_request *req, in akcipher_request_set_crypt()
287 static inline int crypto_akcipher_encrypt(struct akcipher_request *req) in crypto_akcipher_encrypt()
311 static inline int crypto_akcipher_decrypt(struct akcipher_request *req) in crypto_akcipher_decrypt()
335 static inline int crypto_akcipher_sign(struct akcipher_request *req) in crypto_akcipher_sign()
362 static inline int crypto_akcipher_verify(struct akcipher_request *req) in crypto_akcipher_verify()