crypto: skcipher - Zap type in crypto_alloc_sync_skcipher
[ Upstream commit ee509efc74ddbc59bb5d6fd6e050f9ef25f74bff ] The type needs to be zeroed as otherwise the user could use it to allocate an asynchronous sync skcipher. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3a0c8429ab
commit
b2ea189a95
@@ -811,6 +811,7 @@ struct crypto_sync_skcipher *crypto_alloc_sync_skcipher(
|
|||||||
|
|
||||||
/* Only sync algorithms allowed. */
|
/* Only sync algorithms allowed. */
|
||||||
mask |= CRYPTO_ALG_ASYNC | CRYPTO_ALG_SKCIPHER_REQSIZE_LARGE;
|
mask |= CRYPTO_ALG_ASYNC | CRYPTO_ALG_SKCIPHER_REQSIZE_LARGE;
|
||||||
|
type &= ~(CRYPTO_ALG_ASYNC | CRYPTO_ALG_SKCIPHER_REQSIZE_LARGE);
|
||||||
|
|
||||||
tfm = crypto_alloc_tfm(alg_name, &crypto_skcipher_type, type, mask);
|
tfm = crypto_alloc_tfm(alg_name, &crypto_skcipher_type, type, mask);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user