diff --git a/crypto/crypto_user.c b/crypto/crypto_user.c index 5aa25940c2c44471b9e24133ad4eac6be5d65017..74cb166097cd26f92c73aa00d20bfbcdf4746dcf 100644 --- a/crypto/crypto_user.c +++ b/crypto/crypto_user.c @@ -55,6 +55,9 @@ static 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;