commit | 9c25486093a28c345896dcd13a84d8cd5f535763 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Apr 03 18:15:34 2011 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Apr 03 18:15:34 2011 +0200 |
tree | 2c765a1ccd760a3b6f4e9af743832a03a79df708 | |
parent | 361467e5226af652fdf08bdfe5737f51eba594e4 [diff] |
Issue #11746: Fix SSLContext.load_cert_chain() to accept elliptic curve private keys.
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 141b1ae..e494264 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c
@@ -1623,7 +1623,7 @@ goto error; } PySSL_BEGIN_ALLOW_THREADS - r = SSL_CTX_use_RSAPrivateKey_file(self->ctx, + r = SSL_CTX_use_PrivateKey_file(self->ctx, PyBytes_AS_STRING(keyfile ? keyfile_bytes : certfile_bytes), SSL_FILETYPE_PEM); PySSL_END_ALLOW_THREADS