summaryrefslogtreecommitdiff
path: root/main/openvpn/src/openvpn/crypto.c
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-06-15 22:37:17 +0200
committerArne Schwabe <arne@rfc2549.org>2014-06-15 22:37:17 +0200
commit516194ebfcbb4a12cb9b4f078d6a9cc528ab5a87 (patch)
treee7e33341e261f55076153498f954d580df4d0522 /main/openvpn/src/openvpn/crypto.c
parentc35453897494d2b488961f7a446b4df8e24c6f31 (diff)
Update OpenVPN
Diffstat (limited to 'main/openvpn/src/openvpn/crypto.c')
-rw-r--r--main/openvpn/src/openvpn/crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/openvpn/src/openvpn/crypto.c b/main/openvpn/src/openvpn/crypto.c
index c4c356dc..d0dc069a 100644
--- a/main/openvpn/src/openvpn/crypto.c
+++ b/main/openvpn/src/openvpn/crypto.c
@@ -171,7 +171,7 @@ openvpn_encrypt (struct buffer *buf, struct buffer work,
/* Flush the encryption buffer */
ASSERT(cipher_ctx_final(ctx->cipher, BPTR (&work) + outlen, &outlen));
work.len += outlen;
- ASSERT (outlen == iv_size);
+ ASSERT (mode != OPENVPN_MODE_CBC || outlen == iv_size);
/* prepend the IV to the ciphertext */
if (opt->flags & CO_USE_IV)