Lines Matching refs:crypto_aead
75 struct crypto_aead;
137 int (*setkey)(struct crypto_aead *tfm, const u8 *key,
139 int (*setauthsize)(struct crypto_aead *tfm, unsigned int authsize);
142 int (*init)(struct crypto_aead *tfm);
143 void (*exit)(struct crypto_aead *tfm);
152 struct crypto_aead { struct
159 static inline struct crypto_aead *__crypto_aead_cast(struct crypto_tfm *tfm) in __crypto_aead_cast() argument
161 return container_of(tfm, struct crypto_aead, base); in __crypto_aead_cast()
178 struct crypto_aead *crypto_alloc_aead(const char *alg_name, u32 type, u32 mask);
180 static inline struct crypto_tfm *crypto_aead_tfm(struct crypto_aead *tfm) in crypto_aead_tfm()
189 static inline void crypto_free_aead(struct crypto_aead *tfm) in crypto_free_aead()
194 static inline struct aead_alg *crypto_aead_alg(struct crypto_aead *tfm) in crypto_aead_alg()
214 static inline unsigned int crypto_aead_ivsize(struct crypto_aead *tfm) in crypto_aead_ivsize()
231 static inline unsigned int crypto_aead_authsize(struct crypto_aead *tfm) in crypto_aead_authsize()
241 static inline unsigned int crypto_aead_maxauthsize(struct crypto_aead *aead) in crypto_aead_maxauthsize()
256 static inline unsigned int crypto_aead_blocksize(struct crypto_aead *tfm) in crypto_aead_blocksize()
261 static inline unsigned int crypto_aead_alignmask(struct crypto_aead *tfm) in crypto_aead_alignmask()
266 static inline u32 crypto_aead_get_flags(struct crypto_aead *tfm) in crypto_aead_get_flags()
271 static inline void crypto_aead_set_flags(struct crypto_aead *tfm, u32 flags) in crypto_aead_set_flags()
276 static inline void crypto_aead_clear_flags(struct crypto_aead *tfm, u32 flags) in crypto_aead_clear_flags()
297 int crypto_aead_setkey(struct crypto_aead *tfm,
310 int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize);
312 static inline struct crypto_aead *crypto_aead_reqtfm(struct aead_request *req) in crypto_aead_reqtfm()
379 static inline unsigned int crypto_aead_reqsize(struct crypto_aead *tfm) in crypto_aead_reqsize()
393 struct crypto_aead *tfm) in aead_request_set_tfm()
409 static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm, in aead_request_alloc()