aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRoman Zippel <zippel@linux-m68k.org>2002-10-29 04:32:41 -0800
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-10-29 04:32:41 -0800
commit82fe246fb7291daaf2f71fdb8b61a07ce5e3678b (patch)
treeef3cc6709c4a752dc10795018f5b9fd440db4271 /crypto
parentb5ae1625139f28927a47024303a7893333fdbc8b (diff)
downloadhistory-82fe246fb7291daaf2f71fdb8b61a07ce5e3678b.tar.gz
[PATCH] new kernel configuration 7/7
This adds the remaining config files.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/Kconfig44
1 files changed, 44 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
new file mode 100644
index 00000000000000..b3337e230554ca
--- /dev/null
+++ b/crypto/Kconfig
@@ -0,0 +1,44 @@
+#
+# Cryptographic API Configuration
+#
+
+menu "Cryptographic options"
+
+config CRYPTO
+ bool "Cryptographic API"
+ help
+ This option provides the core Cryptographic API.
+
+config CRYPTO_MD4
+ tristate "MD4 digest algorithm"
+ depends on CRYPTO
+ help
+ MD4 message digest algorithm (RFC1320), including HMAC (RFC2104).
+
+
+config CRYPTO_MD5
+ tristate "MD5 digest algorithm"
+ depends on CRYPTO
+ help
+ MD5 message digest algorithm (RFC1321), including HMAC (RFC2104, RFC2403).
+
+config CRYPTO_SHA1
+ tristate "SHA-1 digest algorithm"
+ depends on CRYPTO
+ help
+ SHA-1 secure hash standard (FIPS 180-1), including HMAC (RFC2104, RFC2404).
+
+config CRYPTO_DES
+ tristate "DES and Triple DES EDE cipher algorithms"
+ depends on CRYPTO
+ help
+ DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
+
+config CRYPTO_TEST
+ tristate "Testing module"
+ depends on CRYPTO
+ help
+ Quick & dirty crypto test module.
+
+endmenu
+