SSLContext.options
An integer representing the set of SSL options enabled on this context. The default value is OP_ALL
, but you can specify other options such as OP_NO_SSLv2
by ORing them together.
Note
With versions of OpenSSL older than 0.9.8m, it is only possible to set options, not to clear them. Attempting to clear an option (by resetting the corresponding bits) will raise a ValueError
.
Please login to continue.