summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2016-01-11 21:29:41 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2016-01-18 18:16:12 +0800
commitda014d710016fa4d23b1fda4eb7be878e9c8b26b (patch)
tree62105a370193c93296e407200fea4329ce0ba534 /crypto
parentb8adebe5e58c2f6532fe82b382feeeeb3c01da2e (diff)
downloadlinux-crypto-da014d710016fa4d23b1fda4eb7be878e9c8b26b.tar.gz
linux-crypto-da014d710016fa4d23b1fda4eb7be878e9c8b26b.zip
crypto: algif_skcipher - Add key check exception for cipher_null
This patch adds an exception to the key check so that cipher_null users may continue to use algif_skcipher without setting a key. Cc: stable@vger.kernel.org Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/algif_skcipher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/algif_skcipher.c b/crypto/algif_skcipher.c
index 110bab49..4a5bdb69 100644
--- a/crypto/algif_skcipher.c
+++ b/crypto/algif_skcipher.c
@@ -978,7 +978,7 @@ static int skcipher_accept_parent(void *private, struct sock *sk)
{
struct skcipher_tfm *tfm = private;
- if (!tfm->has_key)
+ if (!tfm->has_key && crypto_skcipher_has_setkey(tfm->skcipher))
return -ENOKEY;
return skcipher_accept_parent_common(private, sk);