tags:

views:

61

answers:

1

Hi,

Is there any way to remove the elliptic curves extension - elliptic_curves and ec_point_formats?

(Via function like SSL_CTX_set_options with SSL_OP_NO_TICKET for the SessionTicket extension, or by conditional compilation, or something else that works...)

Thank you in advance!

+1  A: 

It's possible with conditional compilation - When running the Cionfigure script, it's needed to run it with additional flags: perl Configure VC-WIN32 no-ec [no-ecdh] [no_ecdsa]

rursw1