aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorMister Oyster <oysterized@gmail.com>2018-01-05 03:20:13 +0100
committerMister Oyster <oysterized@gmail.com>2018-01-05 03:30:24 +0100
commitd85ec51c5de8fd3549f05d0208c42aa8bbc9ebf5 (patch)
treef24ae1ec1fb3947323b006d121fdb102706bbafb /crypto
parent58ca1d9f1e9f2cb8d19d436bf6405ba8930fff13 (diff)
Revert "crypto: api - prevent helper ciphers from being used"
This reverts commit 467b365068b0376fd670b1b97c22679e9a280bb1.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/api.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/crypto/api.c b/crypto/api.c
index 583ccdce2..36a0d4602 100644
--- a/crypto/api.c
+++ b/crypto/api.c
@@ -257,16 +257,6 @@ struct crypto_alg *crypto_alg_mod_lookup(const char *name, u32 type, u32 mask)
mask |= CRYPTO_ALG_TESTED;
}
- /*
- * If the internal flag is set for a cipher, require a caller to
- * to invoke the cipher with the internal flag to use that cipher.
- * Also, if a caller wants to allocate a cipher that may or may
- * not be an internal cipher, use type | CRYPTO_ALG_INTERNAL and
- * !(mask & CRYPTO_ALG_INTERNAL).
- */
- if (!((type | mask) & CRYPTO_ALG_INTERNAL))
- mask |= CRYPTO_ALG_INTERNAL;
-
larval = crypto_larval_lookup(name, type, mask);
if (IS_ERR(larval) || !crypto_is_larval(larval))
return larval;