diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2022-11-11 18:05:41 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2022-11-18 16:59:34 +0800 |
commit | e6cb02bd0a52457e486a752da5db7b67f2540c16 (patch) | |
tree | 08a8263c76c3d9f2008daf6992b013f76e1738fd /crypto | |
parent | cc7710d0d4ebc6998f04035cde4f32c5ddbe9d7f (diff) | |
download | linux-e6cb02bd0a52457e486a752da5db7b67f2540c16.tar.gz linux-e6cb02bd0a52457e486a752da5db7b67f2540c16.tar.bz2 linux-e6cb02bd0a52457e486a752da5db7b67f2540c16.zip |
crypto: skcipher - Allow sync algorithms with large request contexts
Some sync algorithms may require a large amount of temporary
space during its operations. There is no reason why they should
be limited just because some legacy users want to place all
temporary data on the stack.
Such algorithms can now set a flag to indicate that they need
extra request context, which will cause them to be invisible
to users that go through the sync_skcipher interface.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/skcipher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/skcipher.c b/crypto/skcipher.c index 418211180cee..0ecab31cfe79 100644 --- a/crypto/skcipher.c +++ b/crypto/skcipher.c @@ -763,7 +763,7 @@ struct crypto_sync_skcipher *crypto_alloc_sync_skcipher( struct crypto_skcipher *tfm; /* Only sync algorithms allowed. */ - mask |= CRYPTO_ALG_ASYNC; + mask |= CRYPTO_ALG_ASYNC | CRYPTO_ALG_SKCIPHER_REQSIZE_LARGE; tfm = crypto_alloc_tfm(alg_name, &crypto_skcipher_type, type, mask); |