Lines Matching refs:alg_name
825 struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask);
972 static inline int crypto_has_ablkcipher(const char *alg_name, u32 type, in crypto_has_ablkcipher() argument
975 return crypto_has_alg(alg_name, crypto_skcipher_type(type), in crypto_has_ablkcipher()
1324 const char *alg_name, u32 type, u32 mask) in crypto_alloc_blkcipher() argument
1330 return __crypto_blkcipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_blkcipher()
1358 static inline int crypto_has_blkcipher(const char *alg_name, u32 type, u32 mask) in crypto_has_blkcipher() argument
1364 return crypto_has_alg(alg_name, type, mask); in crypto_has_blkcipher()
1643 static inline struct crypto_cipher *crypto_alloc_cipher(const char *alg_name, in crypto_alloc_cipher() argument
1650 return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_cipher()
1677 static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask) in crypto_has_cipher() argument
1683 return crypto_has_alg(alg_name, type, mask); in crypto_has_cipher()
1795 static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name, in crypto_alloc_comp() argument
1802 return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_comp()
1815 static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask) in crypto_has_comp() argument
1821 return crypto_has_alg(alg_name, type, mask); in crypto_has_comp()