Lines Matching defs:tfm
130 int crypto_init_shash_ops_async(struct crypto_tfm *tfm);
132 static inline void *crypto_ahash_ctx(struct crypto_ahash *tfm)
134 return crypto_tfm_ctx(crypto_ahash_tfm(tfm));
143 static inline void crypto_ahash_set_reqsize(struct crypto_ahash *tfm,
146 tfm->reqsize = reqsize;
200 static inline void *crypto_shash_ctx(struct crypto_shash *tfm)
202 return crypto_tfm_ctx(&tfm->base);
234 static inline void *crypto_shash_ctx_aligned(struct crypto_shash *tfm)
236 return crypto_tfm_ctx_aligned(&tfm->base);
239 static inline struct crypto_shash *__crypto_shash_cast(struct crypto_tfm *tfm)
241 return container_of(tfm, struct crypto_shash, base);