Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F137797192
D24341.id70355.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D24341.id70355.diff
View Options
Index: sys/netipsec/xform_esp.c
===================================================================
--- sys/netipsec/xform_esp.c
+++ sys/netipsec/xform_esp.c
@@ -94,7 +94,7 @@
struct espstat, espstat,
"ESP statistics (struct espstat, netipsec/esp_var.h");
-static struct timeval deswarn, blfwarn, castwarn, camelliawarn;
+static struct timeval deswarn, blfwarn, castwarn, camelliawarn, tdeswarn;
static int esp_input_cb(struct cryptop *op);
static int esp_output_cb(struct cryptop *crp);
@@ -164,6 +164,10 @@
if (ratecheck(&deswarn, &ipsec_warn_interval))
gone_in(13, "DES cipher for IPsec");
break;
+ case SADB_EALG_3DESCBC:
+ if (ratecheck(&tdeswarn, &ipsec_warn_interval))
+ gone_in(14, "DES cipher for IPsec");
+ break;
case SADB_X_EALG_BLOWFISHCBC:
if (ratecheck(&blfwarn, &ipsec_warn_interval))
gone_in(13, "Blowfish cipher for IPsec");
Index: sys/opencrypto/cryptodev.c
===================================================================
--- sys/opencrypto/cryptodev.c
+++ sys/opencrypto/cryptodev.c
@@ -862,7 +862,7 @@
break;
case CRYPTO_3DES_CBC:
if (ratecheck(&tdeswarn, &warninterval))
- gone_in(13, "3DES cipher via /dev/crypto");
+ gone_in(14, "3DES cipher via /dev/crypto");
break;
case CRYPTO_BLF_CBC:
if (ratecheck(&blfwarn, &warninterval))
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Nov 26, 9:53 PM (2 h, 10 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26232203
Default Alt Text
D24341.id70355.diff (1 KB)
Attached To
Mode
D24341: Deprecate 3des support in IPsec for FreeBSD 13.
Attached
Detach File
Event Timeline
Log In to Comment