aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.transmeta.com>2002-10-29 05:09:28 -0800
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-10-29 05:09:28 -0800
commit0e01a0dd1f8209c0a64cbbbf99eab467e7401df5 (patch)
tree2d22a73ea158bb9fbc21bc1c5c4df9c2cdad9883 /crypto
parent82fe246fb7291daaf2f71fdb8b61a07ce5e3678b (diff)
downloadhistory-0e01a0dd1f8209c0a64cbbbf99eab467e7401df5.tar.gz
Delete old-style config files.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/Config.help21
-rw-r--r--crypto/Config.in16
2 files changed, 0 insertions, 37 deletions
diff --git a/crypto/Config.help b/crypto/Config.help
deleted file mode 100644
index 50351bcad97751..00000000000000
--- a/crypto/Config.help
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# Cryptographic API Components
-#
-CONFIG_CRYPTO
- This option provides the core Cryptographic API.
-
-CONFIG_CRYPTO_MD4
- MD4 message digest algorithm (RFC1320), including HMAC (RFC2104).
-
-CONFIG_CRYPTO_MD5
- MD5 message digest algorithm (RFC1321), including HMAC (RFC2104, RFC2403).
-
-CONFIG_CRYPTO_SHA1
- SHA-1 secure hash standard (FIPS 180-1), including HMAC (RFC2104, RFC2404).
-
-CONFIG_CRYPTO_DES
- DES cipher algorithm (FIPS 46-2), and Triple DES EDE (FIPS 46-3).
-
-CONFIG_CRYPTO_TEST
- Quick & dirty crypto test module.
-
diff --git a/crypto/Config.in b/crypto/Config.in
deleted file mode 100644
index 63b7bc27b4a569..00000000000000
--- a/crypto/Config.in
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# Cryptographic API Configuration
-#
-mainmenu_option next_comment
-comment 'Cryptographic options'
-
-bool 'Cryptographic API' CONFIG_CRYPTO
-if [ "$CONFIG_CRYPTO" = "y" ]; then
- tristate ' MD4 digest algorithm' CONFIG_CRYPTO_MD4
- tristate ' MD5 digest algorithm' CONFIG_CRYPTO_MD5
- tristate ' SHA-1 digest algorithm' CONFIG_CRYPTO_SHA1
- tristate ' DES and Triple DES EDE cipher algorithms' CONFIG_CRYPTO_DES
- tristate ' Testing module' CONFIG_CRYPTO_TEST
-fi
-
-endmenu