diff --git a/crypto/crypto_user_base.c b/crypto/crypto_user_base.c index f25d3f32c9c26901bb5e46ed21b9f35afbd2568a..f93b691f8045297a41c420d5a9899e61e32abef9 100644 --- a/crypto/crypto_user_base.c +++ b/crypto/crypto_user_base.c @@ -56,6 +56,9 @@ struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact) list_for_each_entry(q, &crypto_alg_list, cra_list) { int match = 0; + if (crypto_is_larval(q)) + continue; + if ((q->cra_flags ^ p->cru_type) & p->cru_mask) continue;