Lines Matching refs:alg_name

751 struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask);
887 struct crypto_ablkcipher *crypto_alloc_ablkcipher(const char *alg_name,
915 static inline int crypto_has_ablkcipher(const char *alg_name, u32 type, in crypto_has_ablkcipher() argument
918 return crypto_has_alg(alg_name, crypto_skcipher_type(type), in crypto_has_ablkcipher()
1245 struct crypto_aead *crypto_alloc_aead(const char *alg_name, u32 type, u32 mask);
1648 const char *alg_name, u32 type, u32 mask) in crypto_alloc_blkcipher() argument
1654 return __crypto_blkcipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_blkcipher()
1682 static inline int crypto_has_blkcipher(const char *alg_name, u32 type, u32 mask) in crypto_has_blkcipher() argument
1688 return crypto_has_alg(alg_name, type, mask); in crypto_has_blkcipher()
1967 static inline struct crypto_cipher *crypto_alloc_cipher(const char *alg_name, in crypto_alloc_cipher() argument
1974 return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_cipher()
2001 static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask) in crypto_has_cipher() argument
2007 return crypto_has_alg(alg_name, type, mask); in crypto_has_cipher()
2140 static inline struct crypto_hash *crypto_alloc_hash(const char *alg_name, in crypto_alloc_hash() argument
2148 return __crypto_hash_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_hash()
2175 static inline int crypto_has_hash(const char *alg_name, u32 type, u32 mask) in crypto_has_hash() argument
2182 return crypto_has_alg(alg_name, type, mask); in crypto_has_hash()
2346 static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name, in crypto_alloc_comp() argument
2353 return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_comp()
2366 static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask) in crypto_has_comp() argument
2372 return crypto_has_alg(alg_name, type, mask); in crypto_has_comp()