diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2010-10-06 22:19:21 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2010-10-06 22:19:21 +0000 |
commit | e65ebb0918e61294e65a5461b0de7e878cb55272 (patch) | |
tree | cc179364f68f9b93f48300158338fbbc079530db /lib | |
parent | da1069dc88cbe01e7f15d5c0f010ec088baa3db2 (diff) |
Retire Skipjack
There's not much use for the declassified cipher from the 80's
with a questionable license these days. According to the FIPS
drafts, Skipjack reaches its EOL in December 2010.
The libc portion will be removed after the ports hackathon.
djm and thib agree, no objections from deraadt
Thanks to jsg for digging up FIPS drafts.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/engine/eng_cryptodev.c | 1 | ||||
-rw-r--r-- | lib/libcrypto/engine/hw_cryptodev.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/libcrypto/engine/eng_cryptodev.c b/lib/libcrypto/engine/eng_cryptodev.c index f04c79151b2..10b3856b4e1 100644 --- a/lib/libcrypto/engine/eng_cryptodev.c +++ b/lib/libcrypto/engine/eng_cryptodev.c @@ -151,7 +151,6 @@ static struct { { CRYPTO_AES_CBC, NID_aes_256_cbc, 16, 32, }, { CRYPTO_BLF_CBC, NID_bf_cbc, 8, 16, }, { CRYPTO_CAST_CBC, NID_cast5_cbc, 8, 16, }, - { CRYPTO_SKIPJACK_CBC, NID_undef, 0, 0, }, { 0, NID_undef, 0, 0, }, }; diff --git a/lib/libcrypto/engine/hw_cryptodev.c b/lib/libcrypto/engine/hw_cryptodev.c index b90f24576c9..03022f2fd39 100644 --- a/lib/libcrypto/engine/hw_cryptodev.c +++ b/lib/libcrypto/engine/hw_cryptodev.c @@ -147,7 +147,6 @@ static struct dev_crypto_cipher ciphers[] = { { CRYPTO_AES_CBC, NID_aes_256_cbc, 16, 32, }, { CRYPTO_BLF_CBC, NID_bf_cbc, 8, 16, }, { CRYPTO_CAST_CBC, NID_cast5_cbc, 8, 16, }, - { CRYPTO_SKIPJACK_CBC, NID_undef, 0, 0, }, { 0, NID_undef, 0, 0, }, }; |