Lines Matching refs:alg_name
618 struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask);
754 struct crypto_ablkcipher *crypto_alloc_ablkcipher(const char *alg_name,
782 static inline int crypto_has_ablkcipher(const char *alg_name, u32 type, in crypto_has_ablkcipher() argument
785 return crypto_has_alg(alg_name, crypto_skcipher_type(type), in crypto_has_ablkcipher()
1121 const char *alg_name, u32 type, u32 mask) in crypto_alloc_blkcipher() argument
1127 return __crypto_blkcipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_blkcipher()
1155 static inline int crypto_has_blkcipher(const char *alg_name, u32 type, u32 mask) in crypto_has_blkcipher() argument
1161 return crypto_has_alg(alg_name, type, mask); in crypto_has_blkcipher()
1440 static inline struct crypto_cipher *crypto_alloc_cipher(const char *alg_name, in crypto_alloc_cipher() argument
1447 return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_cipher()
1474 static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask) in crypto_has_cipher() argument
1480 return crypto_has_alg(alg_name, type, mask); in crypto_has_cipher()
1613 static inline struct crypto_hash *crypto_alloc_hash(const char *alg_name, in crypto_alloc_hash() argument
1621 return __crypto_hash_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_hash()
1648 static inline int crypto_has_hash(const char *alg_name, u32 type, u32 mask) in crypto_has_hash() argument
1655 return crypto_has_alg(alg_name, type, mask); in crypto_has_hash()
1819 static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name, in crypto_alloc_comp() argument
1826 return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_comp()
1839 static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask) in crypto_has_comp() argument
1845 return crypto_has_alg(alg_name, type, mask); in crypto_has_comp()