summaryrefslogtreecommitdiff
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2018-05-16 19:44:19 +0200
committerPaul Kehrer <paul.l.kehrer@gmail.com>2018-05-16 13:44:19 -0400
commit460a19d45425218c34dcb7d6fde478f80a987fea (patch)
tree27a774b3666b094b1677aee76539342a6ca1f5e2 /CHANGELOG.rst
parente7f334583541e1de98614e76a65b7d04e7be4979 (diff)
downloadpyopenssl-460a19d45425218c34dcb7d6fde478f80a987fea.tar.gz
Add Connection.get_certificate method (#733)
This makes it possible to retrieve the local certificate (if any) for a Connection. An example where this is useful is when negotiating a DTLS-SRTP connection, the fingerprint of the local certificate needs to be communicated to the remote party out-of-band via SDP.
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 0d8765f..1a659a0 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -24,6 +24,8 @@ Deprecations:
Changes:
^^^^^^^^
+- Added ``Connection.get_certificate`` to retrieve the local certificate.
+ `#733 <https://github.com/pyca/pyopenssl/pull/733>`_
- ``OpenSSL.SSL.Connection`` now sets ``SSL_MODE_AUTO_RETRY`` by default.
`#753 <https://github.com/pyca/pyopenssl/pull/753>`_
- Added ``Context.set_tlsext_use_srtp`` to enable negotiation of SRTP keying material.