提交 d38efad2 编写于 作者: C Christophe Jaillet 提交者: Herbert Xu

crypto: lrw - Check for incorrect cipher name

If the cipher name does not start with 'ecb(' we should bail out, as done
in the 'create()' function in 'crypto/xts.c'.

Fixes: 700cb3f5 ("crypto: lrw - Convert to skcipher")
Signed-off-by: NChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 616129cc
......@@ -614,7 +614,8 @@ static int create(struct crypto_template *tmpl, struct rtattr **tb)
err = -ENAMETOOLONG;
goto err_drop_spawn;
}
}
} else
goto err_drop_spawn;
inst->alg.base.cra_flags = alg->base.cra_flags & CRYPTO_ALG_ASYNC;
inst->alg.base.cra_priority = alg->base.cra_priority;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册