summaryrefslogtreecommitdiffstats
path: root/sys/opencrypto/cryptodev.c
diff options
context:
space:
mode:
authorLuiz Otavio O Souza <luiz@netgate.com>2015-09-15 12:29:33 -0500
committerLuiz Otavio O Souza <luiz@netgate.com>2015-10-20 11:32:36 -0500
commit2d697711142c82967bd7d519bf253f9462bbc573 (patch)
tree829204069a08e1d22b3ccd5704b9da7e07bb0935 /sys/opencrypto/cryptodev.c
parent8debb5ec1f7f108a317cc2c7624198ba2eb03469 (diff)
downloadFreeBSD-src-2d697711142c82967bd7d519bf253f9462bbc573.zip
FreeBSD-src-2d697711142c82967bd7d519bf253f9462bbc573.tar.gz
Revert AESNI patches.
Revert "Importing pfSense patch aesgcm.soft.1.patch" This reverts commit 46e99a8858f1c843c1774e472c11d422ca2163ae. TAG: IPSEC-HEAD Issue: #4841
Diffstat (limited to 'sys/opencrypto/cryptodev.c')
-rw-r--r--sys/opencrypto/cryptodev.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/sys/opencrypto/cryptodev.c b/sys/opencrypto/cryptodev.c
index 9b27ef0..44bfa5c 100644
--- a/sys/opencrypto/cryptodev.c
+++ b/sys/opencrypto/cryptodev.c
@@ -434,16 +434,6 @@ cryptof_ioctl(
case CRYPTO_CAMELLIA_CBC:
txform = &enc_xform_camellia;
break;
- case CRYPTO_AES_CTR:
- txform = &enc_xform_aes_ctr;
- break;
- case CRYPTO_AES_RFC4106_GCM_16:
- txform = &enc_xform_aes_gcm;
- break;
- case CRYPTO_AES_GMAC:
- txform = &enc_xform_aes_gmac;
- break;
-
default:
return (EINVAL);
}
@@ -469,16 +459,6 @@ cryptof_ioctl(
case CRYPTO_RIPEMD160_HMAC:
thash = &auth_hash_hmac_ripemd_160;
break;
- case CRYPTO_AES_128_GMAC:
- thash = &auth_hash_gmac_aes_128;
- break;
- case CRYPTO_AES_192_GMAC:
- thash = &auth_hash_gmac_aes_192;
- break;
- case CRYPTO_AES_256_GMAC:
- thash = &auth_hash_gmac_aes_256;
- break;
-
#ifdef notdef
case CRYPTO_MD5:
thash = &auth_hash_md5;
OpenPOWER on IntegriCloud