Lines Matching refs:crypto_aead

138 struct crypto_aead;
323 int (*setkey)(struct crypto_aead *tfm, const u8 *key,
325 int (*setauthsize)(struct crypto_aead *tfm, unsigned int authsize);
606 int (*setkey)(struct crypto_aead *tfm, const u8 *key,
613 struct crypto_aead *base;
697 struct crypto_aead { struct
1226 static inline struct crypto_aead *__crypto_aead_cast(struct crypto_tfm *tfm) in __crypto_aead_cast()
1228 return (struct crypto_aead *)tfm; in __crypto_aead_cast()
1245 struct crypto_aead *crypto_alloc_aead(const char *alg_name, u32 type, u32 mask);
1247 static inline struct crypto_tfm *crypto_aead_tfm(struct crypto_aead *tfm) in crypto_aead_tfm()
1256 static inline void crypto_free_aead(struct crypto_aead *tfm) in crypto_free_aead()
1261 static inline struct aead_tfm *crypto_aead_crt(struct crypto_aead *tfm) in crypto_aead_crt()
1275 static inline unsigned int crypto_aead_ivsize(struct crypto_aead *tfm) in crypto_aead_ivsize()
1292 static inline unsigned int crypto_aead_authsize(struct crypto_aead *tfm) in crypto_aead_authsize()
1307 static inline unsigned int crypto_aead_blocksize(struct crypto_aead *tfm) in crypto_aead_blocksize()
1312 static inline unsigned int crypto_aead_alignmask(struct crypto_aead *tfm) in crypto_aead_alignmask()
1317 static inline u32 crypto_aead_get_flags(struct crypto_aead *tfm) in crypto_aead_get_flags()
1322 static inline void crypto_aead_set_flags(struct crypto_aead *tfm, u32 flags) in crypto_aead_set_flags()
1327 static inline void crypto_aead_clear_flags(struct crypto_aead *tfm, u32 flags) in crypto_aead_clear_flags()
1348 static inline int crypto_aead_setkey(struct crypto_aead *tfm, const u8 *key, in crypto_aead_setkey()
1366 int crypto_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize);
1368 static inline struct crypto_aead *crypto_aead_reqtfm(struct aead_request *req) in crypto_aead_reqtfm()
1444 static inline unsigned int crypto_aead_reqsize(struct crypto_aead *tfm) in crypto_aead_reqsize()
1458 struct crypto_aead *tfm) in aead_request_set_tfm()
1475 static inline struct aead_request *aead_request_alloc(struct crypto_aead *tfm, in aead_request_alloc()