comparison options.h @ 1256:506f7681d0f8 coverity

merge up to date
author Matt Johnston <matt@ucc.asn.au>
date Tue, 15 Mar 2016 22:45:43 +0800
parents 739b3909c499
children dc8f7997f10f
comparison
equal deleted inserted replaced
1219:84cf9062718d 1256:506f7681d0f8
166 166
167 /* Enable elliptic curve Diffie Hellman key exchange, see note about 167 /* Enable elliptic curve Diffie Hellman key exchange, see note about
168 * ECDSA above */ 168 * ECDSA above */
169 #define DROPBEAR_ECDH 169 #define DROPBEAR_ECDH
170 170
171 /* Group14 (2048 bit) is recommended. Group1 is less secure (1024 bit) though
172 is the only option for interoperability with some older SSH programs */
173 #define DROPBEAR_DH_GROUP1 1
174 #define DROPBEAR_DH_GROUP14 1
175
171 /* Control the memory/performance/compression tradeoff for zlib. 176 /* Control the memory/performance/compression tradeoff for zlib.
172 * Set windowBits=8 for least memory usage, see your system's 177 * Set windowBits=8 for least memory usage, see your system's
173 * zlib.h for full details. 178 * zlib.h for full details.
174 * Default settings (windowBits=15) will use 256kB for compression 179 * Default settings (windowBits=15) will use 256kB for compression
175 * windowBits=8 will use 129kB for compression. 180 * windowBits=8 will use 129kB for compression.