Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a8a2bf64
Commit
a8a2bf64
authored
Nov 21, 2013
by
Christian Heimes
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
0e837d2d
ae7bd49f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
Misc/NEWS
Misc/NEWS
+3
-0
Modules/_ssl.c
Modules/_ssl.c
+6
-0
No files found.
Misc/NEWS
View file @
a8a2bf64
...
...
@@ -59,6 +59,9 @@ Core and Builtins
Library
-------
-
Issue
#
19682
:
Fix
compatibility
issue
with
old
version
of
OpenSSL
that
was
introduced
by
Issue
#
18379.
-
Issue
#
14455
:
plistlib
now
supports
binary
plists
and
has
an
updated
API
.
-
Issue
#
19633
:
Fixed
writing
not
compressed
16
-
and
32
-
bit
wave
files
on
...
...
Modules/_ssl.c
View file @
a8a2bf64
...
...
@@ -1024,9 +1024,15 @@ _get_crl_dp(X509 *certificate) {
int
i
,
j
,
result
;
PyObject
*
lst
;
#if OPENSSL_VERSION_NUMBER < 0x10001000L
dps
=
X509_get_ext_d2i
(
certificate
,
NID_crl_distribution_points
,
NULL
,
NULL
);
#else
/* Calls x509v3_cache_extensions and sets up crldp */
X509_check_ca
(
certificate
);
dps
=
certificate
->
crldp
;
#endif
if
(
dps
==
NULL
)
{
return
Py_None
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment