Commit ede13285 authored by Denis Efremov's avatar Denis Efremov Committed by Herbert Xu

crypto: sun8i-ss - use kfree_sensitive()

Use kfree_sensitive() instead of open-coding it.
Signed-off-by: default avatarDenis Efremov <efremov@linux.com>
Acked-by: default avatarCorentin Labbe <clabbe.montjoie@gmail.com>
Tested-by: default avatarCorentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 712d8069
...@@ -368,10 +368,7 @@ void sun8i_ss_cipher_exit(struct crypto_tfm *tfm) ...@@ -368,10 +368,7 @@ void sun8i_ss_cipher_exit(struct crypto_tfm *tfm)
{ {
struct sun8i_cipher_tfm_ctx *op = crypto_tfm_ctx(tfm); struct sun8i_cipher_tfm_ctx *op = crypto_tfm_ctx(tfm);
if (op->key) { kfree_sensitive(op->key);
memzero_explicit(op->key, op->keylen);
kfree(op->key);
}
crypto_free_skcipher(op->fallback_tfm); crypto_free_skcipher(op->fallback_tfm);
pm_runtime_put_sync(op->ss->dev); pm_runtime_put_sync(op->ss->dev);
} }
...@@ -393,10 +390,7 @@ int sun8i_ss_aes_setkey(struct crypto_skcipher *tfm, const u8 *key, ...@@ -393,10 +390,7 @@ int sun8i_ss_aes_setkey(struct crypto_skcipher *tfm, const u8 *key,
dev_dbg(ss->dev, "ERROR: Invalid keylen %u\n", keylen); dev_dbg(ss->dev, "ERROR: Invalid keylen %u\n", keylen);
return -EINVAL; return -EINVAL;
} }
if (op->key) { kfree_sensitive(op->key);
memzero_explicit(op->key, op->keylen);
kfree(op->key);
}
op->keylen = keylen; op->keylen = keylen;
op->key = kmemdup(key, keylen, GFP_KERNEL | GFP_DMA); op->key = kmemdup(key, keylen, GFP_KERNEL | GFP_DMA);
if (!op->key) if (!op->key)
...@@ -419,10 +413,7 @@ int sun8i_ss_des3_setkey(struct crypto_skcipher *tfm, const u8 *key, ...@@ -419,10 +413,7 @@ int sun8i_ss_des3_setkey(struct crypto_skcipher *tfm, const u8 *key,
return -EINVAL; return -EINVAL;
} }
if (op->key) { kfree_sensitive(op->key);
memzero_explicit(op->key, op->keylen);
kfree(op->key);
}
op->keylen = keylen; op->keylen = keylen;
op->key = kmemdup(key, keylen, GFP_KERNEL | GFP_DMA); op->key = kmemdup(key, keylen, GFP_KERNEL | GFP_DMA);
if (!op->key) if (!op->key)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment