crypto/aead.c
228
return crypto_type_has_alg(alg_name, &crypto_aead_type, type, mask);
crypto/ahash.c
850
return crypto_type_has_alg(alg_name, &crypto_ahash_type, type, mask);
crypto/algapi.c
1052
EXPORT_SYMBOL_GPL(crypto_type_has_alg);
crypto/internal.h
156
int crypto_type_has_alg(const char *name, const struct crypto_type *frontend,
crypto/kpp.c
101
return crypto_type_has_alg(alg_name, &crypto_kpp_type, type, mask);
crypto/shash.c
394
return crypto_type_has_alg(alg_name, &crypto_shash_type, type, mask);
crypto/skcipher.c
670
return crypto_type_has_alg(alg_name, &crypto_skcipher_type, type, mask);