blob: 622369dbf1cdc9c93275f972a4337a7fc1cb1230 [file] [log] [blame]
Hynek Schlawack682443f2015-10-25 16:15:12 +01001Changelog
2=========
3
Hynek Schlawack65e4def2016-03-13 15:07:52 +01004Versions are year-based with a strict backward-compatibility policy.
Hynek Schlawack682443f2015-10-25 16:15:12 +01005The third digit is only for regressions.
6
Paul Kehrerdaf6f002019-11-18 13:10:12 +0800720.0.0 (UNRELEASED)
8-------------------
9
10
11Backward-incompatible changes:
12^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13
Benjamin Peterson2dca7a72020-05-22 11:32:07 -050014- Remove deprecated ``OpenSSL.tsafe`` module.
Alex Gaynor1ede5842019-12-14 11:15:47 -050015- Drop support for Python 3.4
Alex Gaynor77debda2020-04-07 13:40:59 -040016- Drop support for OpenSSL 1.0.1
Paul Kehrerdaf6f002019-11-18 13:10:12 +080017
18Deprecations:
19^^^^^^^^^^^^^
20
21*none*
22
23
24Changes:
25^^^^^^^^
26
27*none*
28
29
Paul Kehrerda402f42019-11-18 12:47:22 +08003019.1.0 (2019-11-18)
Alex Gaynorf0a59cd2019-01-21 14:53:36 -050031-------------------
32
33
34Backward-incompatible changes:
35^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
36
Alex Gaynor01f90a12019-02-07 09:14:48 -050037- Removed deprecated ``ContextType``, ``ConnectionType``, ``PKeyType``, ``X509NameType``, ``X509ReqType``, ``X509Type``, ``X509StoreType``, ``CRLType``, ``PKCS7Type``, ``PKCS12Type``, and ``NetscapeSPKIType`` aliases.
38 Use the classes without the ``Type`` suffix instead.
39 `#814 <https://github.com/pyca/pyopenssl/pull/814>`_
Paul Kehrer85432862019-11-18 09:20:29 +080040- The minimum ``cryptography`` version is now 2.8 due to issues on macOS with a transitive dependency.
41 `#875 <https://github.com/pyca/pyopenssl/pull/875>`_
Alex Gaynorf0a59cd2019-01-21 14:53:36 -050042
43Deprecations:
44^^^^^^^^^^^^^
45
Alex Gaynorbe2bd542019-02-21 21:41:22 -050046- Deprecated ``OpenSSL.SSL.Context.set_npn_advertise_callback``, ``OpenSSL.SSL.Context.set_npn_select_callback``, and ``OpenSSL.SSL.Connection.get_next_proto_negotiated``.
47 ALPN should be used instead.
48 `#820 <https://github.com/pyca/pyopenssl/pull/820>`_
Alex Gaynorf0a59cd2019-01-21 14:53:36 -050049
50
51Changes:
52^^^^^^^^
53
Daniel Holth079c9632019-11-17 22:45:52 -050054- Support ``bytearray`` in ``SSL.Connection.send()`` by using cffi's from_buffer.
55 `#852 <https://github.com/pyca/pyopenssl/pull/852>`_
Mark Williams5d890a02019-11-17 19:56:26 -080056- The ``OpenSSL.SSL.Context.set_alpn_select_callback`` can return a new ``NO_OVERLAPPING_PROTOCOLS`` sentinel value
57 to allow a TLS handshake to complete without an application protocol.
Alex Gaynorf0a59cd2019-01-21 14:53:36 -050058
59
60----
61
Paul Kehrerc9a71e12019-01-21 13:22:19 -06006219.0.0 (2019-01-21)
Paul Kehrera40e8612018-05-16 17:23:50 -040063-------------------
64
65
66Backward-incompatible changes:
67^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
68
Paul Kehrer0e6c5532018-08-23 10:52:15 -050069- ``X509Store.add_cert`` no longer raises an error if you add a duplicate cert.
70 `#787 <https://github.com/pyca/pyopenssl/pull/787>`_
Paul Kehrera40e8612018-05-16 17:23:50 -040071
72
73Deprecations:
74^^^^^^^^^^^^^
75
76*none*
77
78
79Changes:
80^^^^^^^^
81
Paul Kehrerfd706322019-01-21 12:58:35 -060082- pyOpenSSL now works with OpenSSL 1.1.1.
83 `#805 <https://github.com/pyca/pyopenssl/pull/805>`_
84- pyOpenSSL now handles NUL bytes in ``X509Name.get_components()``
85 `#804 <https://github.com/pyca/pyopenssl/pull/804>`_
86
Paul Kehrera40e8612018-05-16 17:23:50 -040087
88
89----
90
Paul Kehrer74de8a12018-05-16 15:12:28 -04009118.0.0 (2018-05-16)
Paul Kehrer3d231f02017-12-01 20:31:06 +080092-------------------
93
94
95Backward-incompatible changes:
96^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
97
Alex Gaynor4f9b7062018-05-14 13:25:05 -040098- The minimum ``cryptography`` version is now 2.2.1.
99- Support for Python 2.6 has been dropped.
Paul Kehrer3d231f02017-12-01 20:31:06 +0800100
101
102Deprecations:
103^^^^^^^^^^^^^
104
105*none*
106
107
108Changes:
109^^^^^^^^
110
Jeremy Lainé460a19d2018-05-16 19:44:19 +0200111- Added ``Connection.get_certificate`` to retrieve the local certificate.
112 `#733 <https://github.com/pyca/pyopenssl/pull/733>`_
Paul Kehrer15c29352018-05-14 13:31:27 -0400113- ``OpenSSL.SSL.Connection`` now sets ``SSL_MODE_AUTO_RETRY`` by default.
114 `#753 <https://github.com/pyca/pyopenssl/pull/753>`_
Jeremy Lainé02261ad2018-05-16 18:33:25 +0200115- Added ``Context.set_tlsext_use_srtp`` to enable negotiation of SRTP keying material.
116 `#734 <https://github.com/pyca/pyopenssl/pull/734>`_
Paul Kehrer3d231f02017-12-01 20:31:06 +0800117
118
119----
120
Paul Kehrerd21fcd82017-12-01 10:13:50 +080012117.5.0 (2017-11-30)
Paul Kehrer57051a52017-11-22 11:40:12 +0800122-------------------
123
124
125Backward-incompatible changes:
126^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
127
Alex Gaynor4f9b7062018-05-14 13:25:05 -0400128- The minimum ``cryptography`` version is now 2.1.4.
Paul Kehrer57051a52017-11-22 11:40:12 +0800129
130
131Deprecations:
132^^^^^^^^^^^^^
133
134*none*
135
136
137Changes:
138^^^^^^^^
139
Paul Kehrere7381862017-11-30 20:55:25 +0800140- Fixed a potential use-after-free in the verify callback and resolved a memory leak when loading PKCS12 files with ``cacerts``.
141 `#723 <https://github.com/pyca/pyopenssl/pull/723>`_
Paul Kehrerbdb76392017-12-01 04:54:32 +0800142- Added ``Connection.export_keying_material`` for RFC 5705 compatible export of keying material.
143 `#725 <https://github.com/pyca/pyopenssl/pull/725>`_
Paul Kehrer57051a52017-11-22 11:40:12 +0800144
145----
146
147
148
Paul Kehrer5a3fb402017-11-22 02:20:14 +080014917.4.0 (2017-11-21)
Paul Kehrer1eac0e82017-09-14 11:28:15 +0800150-------------------
151
152
153Backward-incompatible changes:
154^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
155
156*none*
157
158
159Deprecations:
160^^^^^^^^^^^^^
161
162*none*
163
164
165Changes:
166^^^^^^^^
167
Paul Kehrer1eac0e82017-09-14 11:28:15 +0800168
Paul Kehreracbd6622017-11-20 22:25:18 +0800169- Re-added a subset of the ``OpenSSL.rand`` module.
170 This subset allows conscientious users to reseed the OpenSSL CSPRNG after fork.
171 `#708 <https://github.com/pyca/pyopenssl/pull/708>`_
Alex Gaynor4aa52c32017-11-20 09:04:08 -0500172- Corrected a use-after-free when reusing an issuer or subject from an ``X509`` object after the underlying object has been mutated.
173 `#709 <https://github.com/pyca/pyopenssl/pull/709>`_
Paul Kehrer1eac0e82017-09-14 11:28:15 +0800174
175----
176
Hynek Schlawack29add1d2016-10-16 11:20:04 +0200177
Paul Kehrer9bd33dc2017-09-14 10:53:56 +080017817.3.0 (2017-09-14)
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200179-------------------
180
181
182Backward-incompatible changes:
183^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
184
Alex Gaynor209de942017-07-25 09:08:05 -0400185- Dropped support for Python 3.3.
186 `#677 <https://github.com/pyca/pyopenssl/pull/677>`_
Alex Gaynor23c965e2017-07-25 10:33:17 -0400187- Removed the deprecated ``OpenSSL.rand`` module.
188 This is being done ahead of our normal deprecation schedule due to its lack of use and the fact that it was becoming a maintenance burden.
189 ``os.urandom()`` should be used instead.
190 `#675 <https://github.com/pyca/pyopenssl/pull/675>`_
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200191
192
193Deprecations:
194^^^^^^^^^^^^^
195
Alex Gaynora0792132017-07-22 09:13:57 -0400196- Deprecated ``OpenSSL.tsafe``.
197 `#673 <https://github.com/pyca/pyopenssl/pull/673>`_
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200198
199Changes:
200^^^^^^^^
201
Paul Kehrer9bd33dc2017-09-14 10:53:56 +0800202- Fixed a memory leak in ``OpenSSL.crypto.CRL``.
203 `#690 <https://github.com/pyca/pyopenssl/pull/690>`_
204- Fixed a memory leak when verifying certificates with ``OpenSSL.crypto.X509StoreContext``.
205 `#691 <https://github.com/pyca/pyopenssl/pull/691>`_
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200206
207
208----
209
210
Hynek Schlawackdd446622017-07-20 11:39:51 +020021117.2.0 (2017-07-20)
Hynek Schlawacka4212762017-06-30 18:28:08 +0200212-------------------
213
214
215Backward-incompatible changes:
216^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
217
218*none*
219
220
221Deprecations:
222^^^^^^^^^^^^^
223
Alex Gaynor8a1de8d2017-07-06 22:40:07 -0400224- Deprecated ``OpenSSL.rand`` - callers should use ``os.urandom()`` instead.
225 `#658 <https://github.com/pyca/pyopenssl/pull/658>`_
Hynek Schlawacka4212762017-06-30 18:28:08 +0200226
227
228Changes:
229^^^^^^^^
230
Hynek Schlawack81021282017-07-20 10:32:37 +0200231- Fixed a bug causing ``Context.set_default_verify_paths()`` to not work with cryptography ``manylinux1`` wheels on Python 3.x.
Paul Kehrera92a1a72017-07-19 15:53:23 +0200232 `#665 <https://github.com/pyca/pyopenssl/pull/665>`_
Paul Kehrer59d26252017-07-20 10:45:54 +0200233- Fixed a crash with (EC)DSA signatures in some cases.
234 `#670 <https://github.com/pyca/pyopenssl/pull/670>`_
Paul Kehrera92a1a72017-07-19 15:53:23 +0200235
Hynek Schlawacka4212762017-06-30 18:28:08 +0200236
237----
238
239
Hynek Schlawacka46d2342017-06-30 17:33:08 +020024017.1.0 (2017-06-30)
Hynek Schlawack7706e142017-04-20 14:54:05 +0200241-------------------
242
243
244Backward-incompatible changes:
245^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
246
Hynek Schlawack941f9032017-06-30 16:20:00 +0200247- Removed the deprecated ``OpenSSL.rand.egd()`` function.
Alex Gaynor3ed62732017-05-31 05:03:27 -0400248 Applications should prefer ``os.urandom()`` for random number generation.
249 `#630 <https://github.com/pyca/pyopenssl/pull/630>`_
Alex Gaynor173e4ba2017-06-30 08:01:12 -0700250- Removed the deprecated default ``digest`` argument to ``OpenSSL.crypto.CRL.export()``.
251 Callers must now always pass an explicit ``digest``.
252 `#652 <https://github.com/pyca/pyopenssl/pull/652>`_
Hynek Schlawack941f9032017-06-30 16:20:00 +0200253- Fixed a bug with ``ASN1_TIME`` casting in ``X509.set_notBefore()``,
254 ``X509.set_notAfter()``, ``Revoked.set_rev_date()``, ``Revoked.set_nextUpdate()``,
255 and ``Revoked.set_lastUpdate()``. You must now pass times in the form
Paul Kehrerce98ee62017-06-21 06:59:58 -1000256 ``YYYYMMDDhhmmssZ``. ``YYYYMMDDhhmmss+hhmm`` and ``YYYYMMDDhhmmss-hhmm``
257 will no longer work. `#612 <https://github.com/pyca/pyopenssl/pull/612>`_
Hynek Schlawack7706e142017-04-20 14:54:05 +0200258
259
260Deprecations:
261^^^^^^^^^^^^^
262
Alex Gaynor10d30832017-06-29 15:31:39 -0700263
Hynek Schlawack941f9032017-06-30 16:20:00 +0200264- Deprecated the legacy "Type" aliases: ``ContextType``, ``ConnectionType``, ``PKeyType``, ``X509NameType``, ``X509ExtensionType``, ``X509ReqType``, ``X509Type``, ``X509StoreType``, ``CRLType``, ``PKCS7Type``, ``PKCS12Type``, ``NetscapeSPKIType``.
265 The names without the "Type"-suffix should be used instead.
Hynek Schlawack7706e142017-04-20 14:54:05 +0200266
267
268Changes:
269^^^^^^^^
270
Hynek Schlawack941f9032017-06-30 16:20:00 +0200271- Added ``OpenSSL.crypto.X509.from_cryptography()`` and ``OpenSSL.crypto.X509.to_cryptography()`` for converting X.509 certificate to and from pyca/cryptography objects.
272 `#640 <https://github.com/pyca/pyopenssl/pull/640>`_
273- Added ``OpenSSL.crypto.X509Req.from_cryptography()``, ``OpenSSL.crypto.X509Req.to_cryptography()``, ``OpenSSL.crypto.CRL.from_cryptography()``, and ``OpenSSL.crypto.CRL.to_cryptography()`` for converting X.509 CSRs and CRLs to and from pyca/cryptography objects.
274 `#645 <https://github.com/pyca/pyopenssl/pull/645>`_
Hynek Schlawackd52975c2017-05-13 17:44:27 +0200275- Added ``OpenSSL.debug`` that allows to get an overview of used library versions (including linked OpenSSL) and other useful runtime information using ``python -m OpenSSL.debug``.
276 `#620 <https://github.com/pyca/pyopenssl/pull/620>`_
Hynek Schlawacka46d2342017-06-30 17:33:08 +0200277- Added a fallback path to ``Context.set_default_verify_paths()`` to accommodate the upcoming release of ``cryptography`` ``manylinux1`` wheels.
Hynek Schlawack941f9032017-06-30 16:20:00 +0200278 `#633 <https://github.com/pyca/pyopenssl/pull/633>`_
Hynek Schlawack7706e142017-04-20 14:54:05 +0200279
280
281----
282
283
Hynek Schlawack79705082017-04-20 13:32:49 +020028417.0.0 (2017-04-20)
Hynek Schlawack29add1d2016-10-16 11:20:04 +0200285-------------------
286
287Backward-incompatible changes:
288^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
289
290*none*
291
292
293Deprecations:
294^^^^^^^^^^^^^
295
296*none*
297
298
299Changes:
300^^^^^^^^
301
Thomas Sileoe15e60a2016-11-22 18:13:30 +0100302- Added ``OpenSSL.X509Store.set_time()`` to set a custom verification time when verifying certificate chains.
303 `#567 <https://github.com/pyca/pyopenssl/pull/567>`_
Cory Benfield496652a2017-01-24 11:42:56 +0000304- Added a collection of functions for working with OCSP stapling.
305 None of these functions make it possible to validate OCSP assertions, only to staple them into the handshake and to retrieve the stapled assertion if provided.
306 Users will need to write their own code to handle OCSP assertions.
Hynek Schlawack941f9032017-06-30 16:20:00 +0200307 We specifically added: ``Context.set_ocsp_server_callback()``, ``Context.set_ocsp_client_callback()``, and ``Connection.request_ocsp()``.
Cory Benfield685483b2017-01-24 14:00:45 +0000308 `#580 <https://github.com/pyca/pyopenssl/pull/580>`_
Cory Benfielde62840e2016-11-28 12:17:08 +0000309- Changed the ``SSL`` module's memory allocation policy to avoid zeroing memory it allocates when unnecessary.
310 This reduces CPU usage and memory allocation time by an amount proportional to the size of the allocation.
311 For applications that process a lot of TLS data or that use very lage allocations this can provide considerable performance improvements.
312 `#578 <https://github.com/pyca/pyopenssl/pull/578>`_
Paul Kehrer6c6bf862016-12-19 06:03:48 -0600313- Automatically set ``SSL_CTX_set_ecdh_auto()`` on ``OpenSSL.SSL.Context``.
314 `#575 <https://github.com/pyca/pyopenssl/pull/575>`_
Greg Bowser36eb2de2017-01-24 11:38:55 -0500315- Fix empty exceptions from ``OpenSSL.crypto.load_privatekey()``.
316 `#581 <https://github.com/pyca/pyopenssl/pull/581>`_
Hynek Schlawack29add1d2016-10-16 11:20:04 +0200317
318
319----
320
321
Hynek Schlawackc3b38e52016-10-15 14:56:14 +020032216.2.0 (2016-10-15)
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800323-------------------
324
325Backward-incompatible changes:
326^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
327
328*none*
329
330
331Deprecations:
332^^^^^^^^^^^^^
333
334*none*
335
336
337Changes:
338^^^^^^^^
339
Alex Gaynor0cc56372016-09-24 11:15:55 -0400340- Fixed compatibility errors with OpenSSL 1.1.0.
Paul Kehrerfe2a0a12016-10-06 12:00:54 +0200341- Fixed an issue that caused failures with subinterpreters and embedded Pythons.
342 `#552 <https://github.com/pyca/pyopenssl/pull/552>`_
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800343
Hynek Schlawackc3b38e52016-10-15 14:56:14 +0200344
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800345----
346
Hynek Schlawack682443f2015-10-25 16:15:12 +0100347
Paul Kehrerd0513ab2016-08-26 16:33:23 +080034816.1.0 (2016-08-26)
Hynek Schlawack156f1742016-03-19 12:37:12 +0100349-------------------
350
351Backward-incompatible changes:
352^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
353
354*none*
355
356
357Deprecations:
358^^^^^^^^^^^^^
359
Alex Gaynor2a522852016-08-31 12:17:55 -0400360- Dropped support for OpenSSL 0.9.8.
Hynek Schlawack156f1742016-03-19 12:37:12 +0100361
362
363Changes:
364^^^^^^^^
365
Hynek Schlawack11e43ad2016-07-03 14:40:20 +0200366- Fix memory leak in ``OpenSSL.crypto.dump_privatekey()`` with ``FILETYPE_TEXT``.
367 `#496 <https://github.com/pyca/pyopenssl/pull/496>`_
Dan Sully44e767a2016-06-04 18:05:27 -0700368- Enable use of CRL (and more) in verify context.
369 `#483 <https://github.com/pyca/pyopenssl/pull/483>`_
Paul Kehrer72d968b2016-07-29 15:31:04 +0800370- ``OpenSSL.crypto.PKey`` can now be constructed from ``cryptography`` objects and also exported as such.
371 `#439 <https://github.com/pyca/pyopenssl/pull/439>`_
Paul Kehrerd0513ab2016-08-26 16:33:23 +0800372- Support newer versions of ``cryptography`` which use opaque structs for OpenSSL 1.1.0 compatibility.
Hynek Schlawack156f1742016-03-19 12:37:12 +0100373
374
375----
376
377
Hynek Schlawackb62041b2016-03-19 10:00:09 +010037816.0.0 (2016-03-19)
Hynek Schlawack682443f2015-10-25 16:15:12 +0100379-------------------
380
381This is the first release under full stewardship of PyCA.
382We have made *many* changes to make local development more pleasing.
383The test suite now passes both on Linux and OS X with OpenSSL 0.9.8, 1.0.1, and 1.0.2.
Hynek Schlawackf6c96af2017-04-20 12:34:58 +0200384It has been moved to `pytest <https://docs.pytest.org/>`_, all CI test runs are part of `tox <https://tox.readthedocs.io/>`_ and the source code has been made fully `flake8 <https://flake8.readthedocs.io/>`_ compliant.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100385
Cory Benfield0820ac22015-10-28 17:39:28 +0900386We hope to have lowered the barrier for contributions significantly but are open to hear about any remaining frustrations.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100387
388
389Backward-incompatible changes:
390^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
391
392- Python 3.2 support has been dropped.
393 It never had significant real world usage and has been dropped by our main dependency ``cryptography``.
394 Affected users should upgrade to Python 3.3 or later.
395
396
397Deprecations:
398^^^^^^^^^^^^^
399
400- The support for EGD has been removed.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100401 The only affected function ``OpenSSL.rand.egd()`` now uses ``os.urandom()`` to seed the internal PRNG instead.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100402 Please see `pyca/cryptography#1636 <https://github.com/pyca/cryptography/pull/1636>`_ for more background information on this decision.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100403 In accordance with our backward compatibility policy ``OpenSSL.rand.egd()`` will be *removed* no sooner than a year from the release of 16.0.0.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100404
Hynek Schlawackc3b38e52016-10-15 14:56:14 +0200405 Please note that you should `use urandom <https://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers/>`_ for all your secure random number needs.
Hynek Schlawack046d3f42016-03-13 08:33:04 +0100406- Python 2.6 support has been deprecated.
407 Our main dependency ``cryptography`` deprecated 2.6 in version 0.9 (2015-05-14) with no time table for actually dropping it.
408 pyOpenSSL will drop Python 2.6 support once ``cryptography`` does.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100409
410
411Changes:
412^^^^^^^^
413
Hynek Schlawackb875d512016-03-16 13:56:33 +0100414- Fixed ``OpenSSL.SSL.Context.set_session_id``, ``OpenSSL.SSL.Connection.renegotiate``, ``OpenSSL.SSL.Connection.renegotiate_pending``, and ``OpenSSL.SSL.Context.load_client_ca``.
Hynek Schlawackb1f3ca82016-02-13 09:10:04 +0100415 They were lacking an implementation since 0.14.
Hynek Schlawackb875d512016-03-16 13:56:33 +0100416 `#422 <https://github.com/pyca/pyopenssl/pull/422>`_
Paul Kehrer8fc6ec02016-03-02 13:20:58 -0600417- Fixed segmentation fault when using keys larger than 4096-bit to sign data.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100418 `#428 <https://github.com/pyca/pyopenssl/pull/428>`_
419- Fixed ``AttributeError`` when ``OpenSSL.SSL.Connection.get_app_data()`` was called before setting any app data.
420 `#304 <https://github.com/pyca/pyopenssl/pull/304>`_
421- Added ``OpenSSL.crypto.dump_publickey()`` to dump ``OpenSSL.crypto.PKey`` objects that represent public keys, and ``OpenSSL.crypto.load_publickey()`` to load such objects from serialized representations.
422 `#382 <https://github.com/pyca/pyopenssl/pull/382>`_
423- Added ``OpenSSL.crypto.dump_crl()`` to dump a certificate revocation list out to a string buffer.
424 `#368 <https://github.com/pyca/pyopenssl/pull/368>`_
Hynek Schlawackea94f2b2016-03-13 16:17:53 +0100425- Added ``OpenSSL.SSL.Connection.get_state_string()`` using the OpenSSL binding ``state_string_long``.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100426 `#358 <https://github.com/pyca/pyopenssl/pull/358>`_
427- Added support for the ``socket.MSG_PEEK`` flag to ``OpenSSL.SSL.Connection.recv()`` and ``OpenSSL.SSL.Connection.recv_into()``.
428 `#294 <https://github.com/pyca/pyopenssl/pull/294>`_
429- Added ``OpenSSL.SSL.Connection.get_protocol_version()`` and ``OpenSSL.SSL.Connection.get_protocol_version_name()``.
430 `#244 <https://github.com/pyca/pyopenssl/pull/244>`_
431- Switched to ``utf8string`` mask by default.
432 OpenSSL formerly defaulted to a ``T61String`` if there were UTF-8 characters present.
433 This was changed to default to ``UTF8String`` in the config around 2005, but the actual code didn't change it until late last year.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100434 This will default us to the setting that actually works.
435 To revert this you can call ``OpenSSL.crypto._lib.ASN1_STRING_set_default_mask_asc(b"default")``.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100436 `#234 <https://github.com/pyca/pyopenssl/pull/234>`_
Hynek Schlawack682443f2015-10-25 16:15:12 +0100437
438
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100439----
440
Hynek Schlawack682443f2015-10-25 16:15:12 +0100441
442Older Changelog Entries
443-----------------------
444
Hynek Schlawack0cc61542016-01-19 14:09:32 +0100445The changes from before release 16.0.0 are preserved in the `repository <https://github.com/pyca/pyopenssl/blob/master/doc/ChangeLog_old.txt>`_.