diff options
author | Chanho Min <chanho.min@lge.com> | 2013-07-08 19:01:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-09 13:33:30 -0400 |
commit | 0ea8530dcf762526459b29ac713a623b51fd691f (patch) | |
tree | 65c8e2ff2ec2502ea7200a8ac338419e668a73bb /crypto/Kconfig | |
parent | c72ac7a1a926dbffb59daf0f275450e5eecce16f (diff) |
crypto: add lz4 Cryptographic API
Add support for lz4 and lz4hc compression algorithm using the lib/lz4/*
codebase.
[akpm@linux-foundation.org: fix warnings]
Signed-off-by: Chanho Min <chanho.min@lge.com>
Cc: "Darrick J. Wong" <djwong@us.ibm.com>
Cc: Bob Pearson <rpearson@systemfabricworks.com>
Cc: Richard Weinberger <richard@nod.at>
Cc: Herbert Xu <herbert@gondor.hengli.com.au>
Cc: Yann Collet <yann.collet.73@gmail.com>
Cc: Kyungsik Lee <kyungsik.lee@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r-- | crypto/Kconfig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 904ffe838567..69ce573f1224 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig | |||
@@ -1336,6 +1336,22 @@ config CRYPTO_842 | |||
1336 | help | 1336 | help |
1337 | This is the 842 algorithm. | 1337 | This is the 842 algorithm. |
1338 | 1338 | ||
1339 | config CRYPTO_LZ4 | ||
1340 | tristate "LZ4 compression algorithm" | ||
1341 | select CRYPTO_ALGAPI | ||
1342 | select LZ4_COMPRESS | ||
1343 | select LZ4_DECOMPRESS | ||
1344 | help | ||
1345 | This is the LZ4 algorithm. | ||
1346 | |||
1347 | config CRYPTO_LZ4HC | ||
1348 | tristate "LZ4HC compression algorithm" | ||
1349 | select CRYPTO_ALGAPI | ||
1350 | select LZ4HC_COMPRESS | ||
1351 | select LZ4_DECOMPRESS | ||
1352 | help | ||
1353 | This is the LZ4 high compression mode algorithm. | ||
1354 | |||
1339 | comment "Random Number Generation" | 1355 | comment "Random Number Generation" |
1340 | 1356 | ||
1341 | config CRYPTO_ANSI_CPRNG | 1357 | config CRYPTO_ANSI_CPRNG |