aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorHye-Shik Chang <perky@FreeBSD.org>2007-08-21 08:01:03 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:55:38 -0400
commite2ee95b8c69e542d6afef3f6f38ea598cc146ba7 (patch)
tree9fea66f721fd0ca6b8b519a927a1c65fcbcb56ef /crypto/Kconfig
parentaa379a6ab17ff5b06552c52360ce6d9f8c7c209a (diff)
[CRYPTO] seed: New cipher algorithm
This patch adds support for the SEED cipher (RFC4269). This patch have been used in few VPN appliance vendors in Korea for several years. And it was verified by KISA, who developed the algorithm itself. As its importance in Korean banking industry, it would be great if linux incorporates the support. Signed-off-by: Hye-Shik Chang <perky@FreeBSD.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r--crypto/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index ec8369cff322..981497c89752 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -412,6 +412,20 @@ config CRYPTO_ANUBIS
412 <https://www.cosic.esat.kuleuven.ac.be/nessie/reports/> 412 <https://www.cosic.esat.kuleuven.ac.be/nessie/reports/>
413 <http://planeta.terra.com.br/informatica/paulobarreto/AnubisPage.html> 413 <http://planeta.terra.com.br/informatica/paulobarreto/AnubisPage.html>
414 414
415config CRYPTO_SEED
416 tristate "SEED cipher algorithm"
417 select CRYPTO_ALGAPI
418 help
419 SEED cipher algorithm (RFC4269).
420
421 SEED is a 128-bit symmetric key block cipher that has been
422 developed by KISA (Korea Information Security Agency) as a
423 national standard encryption algorithm of the Republic of Korea.
424 It is a 16 round block cipher with the key size of 128 bit.
425
426 See also:
427 <http://www.kisa.or.kr/kisa/seed/jsp/seed_eng.jsp>
428
415 429
416config CRYPTO_DEFLATE 430config CRYPTO_DEFLATE
417 tristate "Deflate compression algorithm" 431 tristate "Deflate compression algorithm"