Changes between Initial Version and Version 1 of Ticket #250, comment 6
- Timestamp:
- 01/20/13 17:50:48 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #250, comment 6
initial v1 1 1 ... for PolarSSL 1.2 also supports "blowfish" (but with alternate cipher name and default key lenght) you might also use this additional patch: 2 2 3 {{{ 4 --- src/openvpn/options.c.ori 2013-01-13 18:31:52.735437040 +0100 5 +++ src/openvpn/options.c 2013-01-13 18:31:32.595437020 +0100 6 @@ -827,7 +827,12 @@ 7 o->server_poll_timeout = 0; 8 #endif 9 #ifdef ENABLE_CRYPTO 10 +#ifdef ENABLE_CRYPTO_POLARSSL 11 + o->ciphername = "BLOWFISH-CBC"; 12 + o->keysize = 128; 13 +#else 14 o->ciphername = "BF-CBC"; 15 +#endif 16 o->ciphername_defined = true; 17 o->authname = "SHA1"; 18 o->authname_defined = true; 19 }}} 3 ...deleted.. 20 4