Lines Matching refs:akcipher_request
32 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()
191 static inline struct akcipher_request *akcipher_request_alloc( in akcipher_request_alloc()
194 struct akcipher_request *req; in akcipher_request_alloc()
208 static inline void akcipher_request_free(struct akcipher_request *req) in akcipher_request_free()
224 static inline void akcipher_request_set_callback(struct akcipher_request *req, in akcipher_request_set_callback()
245 static inline void akcipher_request_set_crypt(struct akcipher_request *req, in akcipher_request_set_crypt()
283 static inline int crypto_akcipher_encrypt(struct akcipher_request *req) in crypto_akcipher_encrypt()
301 static inline int crypto_akcipher_decrypt(struct akcipher_request *req) in crypto_akcipher_decrypt()
319 static inline int crypto_akcipher_sign(struct akcipher_request *req) in crypto_akcipher_sign()
337 static inline int crypto_akcipher_verify(struct akcipher_request *req) in crypto_akcipher_verify()