diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2017-04-06 11:16:11 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-04-10 14:17:27 +0300 |
commit | f437a3f477cce402dbec6537b29e9e33962c9f73 (patch) | |
tree | 29e0a8cb8d08330954af0eb065bc7c4adbc3a504 | |
parent | 633439f5b7e9e2a88fb2ead38bc12c5061897cf2 (diff) | |
download | linux-f437a3f477cce402dbec6537b29e9e33962c9f73.tar.xz |
crypto: api - Extend algorithm name limit to 128 bytes
With the new explicit IV generators, we may now exceed the 64-byte
length limit on the algorithm name, e.g., with
echainiv(authencesn(hmac(sha256-generic),cbc(des3_ede-generic)))
This patch extends the length limit to 128 bytes.
Reported-by: Alexander Sverdlin <alexander.sverdlin@nokia.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Acked-by: Alexander Sverdlin <alexander.sverdlin@nokia.com>
Tested-by: Alexander Sverdlin <alexander.sverdlin@nokia.com>
-rw-r--r-- | include/linux/crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index c0b0cf3d2d2f..84da9978e951 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -123,7 +123,7 @@ /* * Miscellaneous stuff. */ -#define CRYPTO_MAX_ALG_NAME 64 +#define CRYPTO_MAX_ALG_NAME 128 /* * The macro CRYPTO_MINALIGN_ATTR (along with the void * type in the actual |