Lines Matching refs:alg_name
657 struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask);
804 static inline int crypto_has_ablkcipher(const char *alg_name, u32 type, in crypto_has_ablkcipher() argument
807 return crypto_has_alg(alg_name, crypto_skcipher_type(type), in crypto_has_ablkcipher()
1142 const char *alg_name, u32 type, u32 mask) in crypto_alloc_blkcipher() argument
1148 return __crypto_blkcipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_blkcipher()
1176 static inline int crypto_has_blkcipher(const char *alg_name, u32 type, u32 mask) in crypto_has_blkcipher() argument
1182 return crypto_has_alg(alg_name, type, mask); in crypto_has_blkcipher()
1461 static inline struct crypto_cipher *crypto_alloc_cipher(const char *alg_name, in crypto_alloc_cipher() argument
1468 return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_cipher()
1495 static inline int crypto_has_cipher(const char *alg_name, u32 type, u32 mask) in crypto_has_cipher() argument
1501 return crypto_has_alg(alg_name, type, mask); in crypto_has_cipher()
1613 static inline struct crypto_comp *crypto_alloc_comp(const char *alg_name, in crypto_alloc_comp() argument
1620 return __crypto_comp_cast(crypto_alloc_base(alg_name, type, mask)); in crypto_alloc_comp()
1633 static inline int crypto_has_comp(const char *alg_name, u32 type, u32 mask) in crypto_has_comp() argument
1639 return crypto_has_alg(alg_name, type, mask); in crypto_has_comp()