diff --git a/Changes.rst b/Changes.rst index 9258230f..a21c0946 100644 --- a/Changes.rst +++ b/Changes.rst @@ -177,6 +177,8 @@ Deprecated features X.509 subject formatting must be updated to the standardized formatting. See the man page for more information. +- ``--no-iv`` is deprecated in 2.4 and will be remove in 2.5. + User-visible Changes -------------------- - For certificate DNs with duplicate fields, e.g. "OU=one,OU=two", both fields diff --git a/doc/openvpn.8 b/doc/openvpn.8 index 290a441a..e5619c02 100644 --- a/doc/openvpn.8 +++ b/doc/openvpn.8 @@ -4399,6 +4399,10 @@ This option only makes sense when replay protection is enabled .\"********************************************************* .TP .B \-\-no\-iv + +.B DEPRECATED +This option will be removed in OpenVPN 2.5. + (Advanced) Disable OpenVPN's use of IV (cipher initialization vector). Don't use this option unless you are prepared to make a tradeoff of greater efficiency in exchange for less diff --git a/src/openvpn/options.c b/src/openvpn/options.c index db1cfe35..f6e0f138 100644 --- a/src/openvpn/options.c +++ b/src/openvpn/options.c @@ -2238,6 +2238,10 @@ options_postprocess_verify_ce (const struct options *options, const struct conne { msg (M_USAGE, "--no-iv not allowed when NCP is enabled."); } + if (!options->use_iv) + { + msg (M_WARN, "WARNING: --no-iv is deprecated and will be removed in 2.5"); + } /* * Check consistency of replay options