blob: 2b6d732617241915825b607e6cf78efdd579ec7b [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
Alex Gaynorf0a59cd2019-01-21 14:53:36 -0500719.1.0 (UNRELEASED)
8-------------------
9
10
11Backward-incompatible changes:
12^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13
Alex Gaynor01f90a12019-02-07 09:14:48 -050014- Removed deprecated ``ContextType``, ``ConnectionType``, ``PKeyType``, ``X509NameType``, ``X509ReqType``, ``X509Type``, ``X509StoreType``, ``CRLType``, ``PKCS7Type``, ``PKCS12Type``, and ``NetscapeSPKIType`` aliases.
15 Use the classes without the ``Type`` suffix instead.
16 `#814 <https://github.com/pyca/pyopenssl/pull/814>`_
Alex Gaynorf0a59cd2019-01-21 14:53:36 -050017
18Deprecations:
19^^^^^^^^^^^^^
20
Alex Gaynorbe2bd542019-02-21 21:41:22 -050021- Deprecated ``OpenSSL.SSL.Context.set_npn_advertise_callback``, ``OpenSSL.SSL.Context.set_npn_select_callback``, and ``OpenSSL.SSL.Connection.get_next_proto_negotiated``.
22 ALPN should be used instead.
23 `#820 <https://github.com/pyca/pyopenssl/pull/820>`_
Alex Gaynorf0a59cd2019-01-21 14:53:36 -050024
25
26Changes:
27^^^^^^^^
28
29*none*
30
31
32----
33
Paul Kehrerc9a71e12019-01-21 13:22:19 -06003419.0.0 (2019-01-21)
Paul Kehrera40e8612018-05-16 17:23:50 -040035-------------------
36
37
38Backward-incompatible changes:
39^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40
Paul Kehrer0e6c5532018-08-23 10:52:15 -050041- ``X509Store.add_cert`` no longer raises an error if you add a duplicate cert.
42 `#787 <https://github.com/pyca/pyopenssl/pull/787>`_
Paul Kehrera40e8612018-05-16 17:23:50 -040043
44
45Deprecations:
46^^^^^^^^^^^^^
47
48*none*
49
50
51Changes:
52^^^^^^^^
53
Paul Kehrerfd706322019-01-21 12:58:35 -060054- pyOpenSSL now works with OpenSSL 1.1.1.
55 `#805 <https://github.com/pyca/pyopenssl/pull/805>`_
56- pyOpenSSL now handles NUL bytes in ``X509Name.get_components()``
57 `#804 <https://github.com/pyca/pyopenssl/pull/804>`_
58
Paul Kehrera40e8612018-05-16 17:23:50 -040059
60
61----
62
Paul Kehrer74de8a12018-05-16 15:12:28 -04006318.0.0 (2018-05-16)
Paul Kehrer3d231f02017-12-01 20:31:06 +080064-------------------
65
66
67Backward-incompatible changes:
68^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
69
Alex Gaynor4f9b7062018-05-14 13:25:05 -040070- The minimum ``cryptography`` version is now 2.2.1.
71- Support for Python 2.6 has been dropped.
Paul Kehrer3d231f02017-12-01 20:31:06 +080072
73
74Deprecations:
75^^^^^^^^^^^^^
76
77*none*
78
79
80Changes:
81^^^^^^^^
82
Jeremy Lainé460a19d2018-05-16 19:44:19 +020083- Added ``Connection.get_certificate`` to retrieve the local certificate.
84 `#733 <https://github.com/pyca/pyopenssl/pull/733>`_
Paul Kehrer15c29352018-05-14 13:31:27 -040085- ``OpenSSL.SSL.Connection`` now sets ``SSL_MODE_AUTO_RETRY`` by default.
86 `#753 <https://github.com/pyca/pyopenssl/pull/753>`_
Jeremy Lainé02261ad2018-05-16 18:33:25 +020087- Added ``Context.set_tlsext_use_srtp`` to enable negotiation of SRTP keying material.
88 `#734 <https://github.com/pyca/pyopenssl/pull/734>`_
Paul Kehrer3d231f02017-12-01 20:31:06 +080089
90
91----
92
Paul Kehrerd21fcd82017-12-01 10:13:50 +08009317.5.0 (2017-11-30)
Paul Kehrer57051a52017-11-22 11:40:12 +080094-------------------
95
96
97Backward-incompatible changes:
98^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
99
Alex Gaynor4f9b7062018-05-14 13:25:05 -0400100- The minimum ``cryptography`` version is now 2.1.4.
Paul Kehrer57051a52017-11-22 11:40:12 +0800101
102
103Deprecations:
104^^^^^^^^^^^^^
105
106*none*
107
108
109Changes:
110^^^^^^^^
111
Paul Kehrere7381862017-11-30 20:55:25 +0800112- Fixed a potential use-after-free in the verify callback and resolved a memory leak when loading PKCS12 files with ``cacerts``.
113 `#723 <https://github.com/pyca/pyopenssl/pull/723>`_
Paul Kehrerbdb76392017-12-01 04:54:32 +0800114- Added ``Connection.export_keying_material`` for RFC 5705 compatible export of keying material.
115 `#725 <https://github.com/pyca/pyopenssl/pull/725>`_
Paul Kehrer57051a52017-11-22 11:40:12 +0800116
117----
118
119
120
Paul Kehrer5a3fb402017-11-22 02:20:14 +080012117.4.0 (2017-11-21)
Paul Kehrer1eac0e82017-09-14 11:28:15 +0800122-------------------
123
124
125Backward-incompatible changes:
126^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
127
128*none*
129
130
131Deprecations:
132^^^^^^^^^^^^^
133
134*none*
135
136
137Changes:
138^^^^^^^^
139
Paul Kehrer1eac0e82017-09-14 11:28:15 +0800140
Paul Kehreracbd6622017-11-20 22:25:18 +0800141- Re-added a subset of the ``OpenSSL.rand`` module.
142 This subset allows conscientious users to reseed the OpenSSL CSPRNG after fork.
143 `#708 <https://github.com/pyca/pyopenssl/pull/708>`_
Alex Gaynor4aa52c32017-11-20 09:04:08 -0500144- Corrected a use-after-free when reusing an issuer or subject from an ``X509`` object after the underlying object has been mutated.
145 `#709 <https://github.com/pyca/pyopenssl/pull/709>`_
Paul Kehrer1eac0e82017-09-14 11:28:15 +0800146
147----
148
Hynek Schlawack29add1d2016-10-16 11:20:04 +0200149
Paul Kehrer9bd33dc2017-09-14 10:53:56 +080015017.3.0 (2017-09-14)
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200151-------------------
152
153
154Backward-incompatible changes:
155^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
156
Alex Gaynor209de942017-07-25 09:08:05 -0400157- Dropped support for Python 3.3.
158 `#677 <https://github.com/pyca/pyopenssl/pull/677>`_
Alex Gaynor23c965e2017-07-25 10:33:17 -0400159- Removed the deprecated ``OpenSSL.rand`` module.
160 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.
161 ``os.urandom()`` should be used instead.
162 `#675 <https://github.com/pyca/pyopenssl/pull/675>`_
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200163
164
165Deprecations:
166^^^^^^^^^^^^^
167
Alex Gaynora0792132017-07-22 09:13:57 -0400168- Deprecated ``OpenSSL.tsafe``.
169 `#673 <https://github.com/pyca/pyopenssl/pull/673>`_
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200170
171Changes:
172^^^^^^^^
173
Paul Kehrer9bd33dc2017-09-14 10:53:56 +0800174- Fixed a memory leak in ``OpenSSL.crypto.CRL``.
175 `#690 <https://github.com/pyca/pyopenssl/pull/690>`_
176- Fixed a memory leak when verifying certificates with ``OpenSSL.crypto.X509StoreContext``.
177 `#691 <https://github.com/pyca/pyopenssl/pull/691>`_
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200178
179
180----
181
182
Hynek Schlawackdd446622017-07-20 11:39:51 +020018317.2.0 (2017-07-20)
Hynek Schlawacka4212762017-06-30 18:28:08 +0200184-------------------
185
186
187Backward-incompatible changes:
188^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
189
190*none*
191
192
193Deprecations:
194^^^^^^^^^^^^^
195
Alex Gaynor8a1de8d2017-07-06 22:40:07 -0400196- Deprecated ``OpenSSL.rand`` - callers should use ``os.urandom()`` instead.
197 `#658 <https://github.com/pyca/pyopenssl/pull/658>`_
Hynek Schlawacka4212762017-06-30 18:28:08 +0200198
199
200Changes:
201^^^^^^^^
202
Hynek Schlawack81021282017-07-20 10:32:37 +0200203- 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 +0200204 `#665 <https://github.com/pyca/pyopenssl/pull/665>`_
Paul Kehrer59d26252017-07-20 10:45:54 +0200205- Fixed a crash with (EC)DSA signatures in some cases.
206 `#670 <https://github.com/pyca/pyopenssl/pull/670>`_
Paul Kehrera92a1a72017-07-19 15:53:23 +0200207
Hynek Schlawacka4212762017-06-30 18:28:08 +0200208
209----
210
211
Hynek Schlawacka46d2342017-06-30 17:33:08 +020021217.1.0 (2017-06-30)
Hynek Schlawack7706e142017-04-20 14:54:05 +0200213-------------------
214
215
216Backward-incompatible changes:
217^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
218
Hynek Schlawack941f9032017-06-30 16:20:00 +0200219- Removed the deprecated ``OpenSSL.rand.egd()`` function.
Alex Gaynor3ed62732017-05-31 05:03:27 -0400220 Applications should prefer ``os.urandom()`` for random number generation.
221 `#630 <https://github.com/pyca/pyopenssl/pull/630>`_
Alex Gaynor173e4ba2017-06-30 08:01:12 -0700222- Removed the deprecated default ``digest`` argument to ``OpenSSL.crypto.CRL.export()``.
223 Callers must now always pass an explicit ``digest``.
224 `#652 <https://github.com/pyca/pyopenssl/pull/652>`_
Hynek Schlawack941f9032017-06-30 16:20:00 +0200225- Fixed a bug with ``ASN1_TIME`` casting in ``X509.set_notBefore()``,
226 ``X509.set_notAfter()``, ``Revoked.set_rev_date()``, ``Revoked.set_nextUpdate()``,
227 and ``Revoked.set_lastUpdate()``. You must now pass times in the form
Paul Kehrerce98ee62017-06-21 06:59:58 -1000228 ``YYYYMMDDhhmmssZ``. ``YYYYMMDDhhmmss+hhmm`` and ``YYYYMMDDhhmmss-hhmm``
229 will no longer work. `#612 <https://github.com/pyca/pyopenssl/pull/612>`_
Hynek Schlawack7706e142017-04-20 14:54:05 +0200230
231
232Deprecations:
233^^^^^^^^^^^^^
234
Alex Gaynor10d30832017-06-29 15:31:39 -0700235
Hynek Schlawack941f9032017-06-30 16:20:00 +0200236- Deprecated the legacy "Type" aliases: ``ContextType``, ``ConnectionType``, ``PKeyType``, ``X509NameType``, ``X509ExtensionType``, ``X509ReqType``, ``X509Type``, ``X509StoreType``, ``CRLType``, ``PKCS7Type``, ``PKCS12Type``, ``NetscapeSPKIType``.
237 The names without the "Type"-suffix should be used instead.
Hynek Schlawack7706e142017-04-20 14:54:05 +0200238
239
240Changes:
241^^^^^^^^
242
Hynek Schlawack941f9032017-06-30 16:20:00 +0200243- Added ``OpenSSL.crypto.X509.from_cryptography()`` and ``OpenSSL.crypto.X509.to_cryptography()`` for converting X.509 certificate to and from pyca/cryptography objects.
244 `#640 <https://github.com/pyca/pyopenssl/pull/640>`_
245- 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.
246 `#645 <https://github.com/pyca/pyopenssl/pull/645>`_
Hynek Schlawackd52975c2017-05-13 17:44:27 +0200247- 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``.
248 `#620 <https://github.com/pyca/pyopenssl/pull/620>`_
Hynek Schlawacka46d2342017-06-30 17:33:08 +0200249- 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 +0200250 `#633 <https://github.com/pyca/pyopenssl/pull/633>`_
Hynek Schlawack7706e142017-04-20 14:54:05 +0200251
252
253----
254
255
Hynek Schlawack79705082017-04-20 13:32:49 +020025617.0.0 (2017-04-20)
Hynek Schlawack29add1d2016-10-16 11:20:04 +0200257-------------------
258
259Backward-incompatible changes:
260^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
261
262*none*
263
264
265Deprecations:
266^^^^^^^^^^^^^
267
268*none*
269
270
271Changes:
272^^^^^^^^
273
Thomas Sileoe15e60a2016-11-22 18:13:30 +0100274- Added ``OpenSSL.X509Store.set_time()`` to set a custom verification time when verifying certificate chains.
275 `#567 <https://github.com/pyca/pyopenssl/pull/567>`_
Cory Benfield496652a2017-01-24 11:42:56 +0000276- Added a collection of functions for working with OCSP stapling.
277 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.
278 Users will need to write their own code to handle OCSP assertions.
Hynek Schlawack941f9032017-06-30 16:20:00 +0200279 We specifically added: ``Context.set_ocsp_server_callback()``, ``Context.set_ocsp_client_callback()``, and ``Connection.request_ocsp()``.
Cory Benfield685483b2017-01-24 14:00:45 +0000280 `#580 <https://github.com/pyca/pyopenssl/pull/580>`_
Cory Benfielde62840e2016-11-28 12:17:08 +0000281- Changed the ``SSL`` module's memory allocation policy to avoid zeroing memory it allocates when unnecessary.
282 This reduces CPU usage and memory allocation time by an amount proportional to the size of the allocation.
283 For applications that process a lot of TLS data or that use very lage allocations this can provide considerable performance improvements.
284 `#578 <https://github.com/pyca/pyopenssl/pull/578>`_
Paul Kehrer6c6bf862016-12-19 06:03:48 -0600285- Automatically set ``SSL_CTX_set_ecdh_auto()`` on ``OpenSSL.SSL.Context``.
286 `#575 <https://github.com/pyca/pyopenssl/pull/575>`_
Greg Bowser36eb2de2017-01-24 11:38:55 -0500287- Fix empty exceptions from ``OpenSSL.crypto.load_privatekey()``.
288 `#581 <https://github.com/pyca/pyopenssl/pull/581>`_
Hynek Schlawack29add1d2016-10-16 11:20:04 +0200289
290
291----
292
293
Hynek Schlawackc3b38e52016-10-15 14:56:14 +020029416.2.0 (2016-10-15)
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800295-------------------
296
297Backward-incompatible changes:
298^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
299
300*none*
301
302
303Deprecations:
304^^^^^^^^^^^^^
305
306*none*
307
308
309Changes:
310^^^^^^^^
311
Alex Gaynor0cc56372016-09-24 11:15:55 -0400312- Fixed compatibility errors with OpenSSL 1.1.0.
Paul Kehrerfe2a0a12016-10-06 12:00:54 +0200313- Fixed an issue that caused failures with subinterpreters and embedded Pythons.
314 `#552 <https://github.com/pyca/pyopenssl/pull/552>`_
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800315
Hynek Schlawackc3b38e52016-10-15 14:56:14 +0200316
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800317----
318
Hynek Schlawack682443f2015-10-25 16:15:12 +0100319
Paul Kehrerd0513ab2016-08-26 16:33:23 +080032016.1.0 (2016-08-26)
Hynek Schlawack156f1742016-03-19 12:37:12 +0100321-------------------
322
323Backward-incompatible changes:
324^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
325
326*none*
327
328
329Deprecations:
330^^^^^^^^^^^^^
331
Alex Gaynor2a522852016-08-31 12:17:55 -0400332- Dropped support for OpenSSL 0.9.8.
Hynek Schlawack156f1742016-03-19 12:37:12 +0100333
334
335Changes:
336^^^^^^^^
337
Hynek Schlawack11e43ad2016-07-03 14:40:20 +0200338- Fix memory leak in ``OpenSSL.crypto.dump_privatekey()`` with ``FILETYPE_TEXT``.
339 `#496 <https://github.com/pyca/pyopenssl/pull/496>`_
Dan Sully44e767a2016-06-04 18:05:27 -0700340- Enable use of CRL (and more) in verify context.
341 `#483 <https://github.com/pyca/pyopenssl/pull/483>`_
Paul Kehrer72d968b2016-07-29 15:31:04 +0800342- ``OpenSSL.crypto.PKey`` can now be constructed from ``cryptography`` objects and also exported as such.
343 `#439 <https://github.com/pyca/pyopenssl/pull/439>`_
Paul Kehrerd0513ab2016-08-26 16:33:23 +0800344- Support newer versions of ``cryptography`` which use opaque structs for OpenSSL 1.1.0 compatibility.
Hynek Schlawack156f1742016-03-19 12:37:12 +0100345
346
347----
348
349
Hynek Schlawackb62041b2016-03-19 10:00:09 +010035016.0.0 (2016-03-19)
Hynek Schlawack682443f2015-10-25 16:15:12 +0100351-------------------
352
353This is the first release under full stewardship of PyCA.
354We have made *many* changes to make local development more pleasing.
355The 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 +0200356It 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 +0100357
Cory Benfield0820ac22015-10-28 17:39:28 +0900358We 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 +0100359
360
361Backward-incompatible changes:
362^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
363
364- Python 3.2 support has been dropped.
365 It never had significant real world usage and has been dropped by our main dependency ``cryptography``.
366 Affected users should upgrade to Python 3.3 or later.
367
368
369Deprecations:
370^^^^^^^^^^^^^
371
372- The support for EGD has been removed.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100373 The only affected function ``OpenSSL.rand.egd()`` now uses ``os.urandom()`` to seed the internal PRNG instead.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100374 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 +0100375 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 +0100376
Hynek Schlawackc3b38e52016-10-15 14:56:14 +0200377 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 +0100378- Python 2.6 support has been deprecated.
379 Our main dependency ``cryptography`` deprecated 2.6 in version 0.9 (2015-05-14) with no time table for actually dropping it.
380 pyOpenSSL will drop Python 2.6 support once ``cryptography`` does.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100381
382
383Changes:
384^^^^^^^^
385
Hynek Schlawackb875d512016-03-16 13:56:33 +0100386- 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 +0100387 They were lacking an implementation since 0.14.
Hynek Schlawackb875d512016-03-16 13:56:33 +0100388 `#422 <https://github.com/pyca/pyopenssl/pull/422>`_
Paul Kehrer8fc6ec02016-03-02 13:20:58 -0600389- Fixed segmentation fault when using keys larger than 4096-bit to sign data.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100390 `#428 <https://github.com/pyca/pyopenssl/pull/428>`_
391- Fixed ``AttributeError`` when ``OpenSSL.SSL.Connection.get_app_data()`` was called before setting any app data.
392 `#304 <https://github.com/pyca/pyopenssl/pull/304>`_
393- 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.
394 `#382 <https://github.com/pyca/pyopenssl/pull/382>`_
395- Added ``OpenSSL.crypto.dump_crl()`` to dump a certificate revocation list out to a string buffer.
396 `#368 <https://github.com/pyca/pyopenssl/pull/368>`_
Hynek Schlawackea94f2b2016-03-13 16:17:53 +0100397- Added ``OpenSSL.SSL.Connection.get_state_string()`` using the OpenSSL binding ``state_string_long``.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100398 `#358 <https://github.com/pyca/pyopenssl/pull/358>`_
399- Added support for the ``socket.MSG_PEEK`` flag to ``OpenSSL.SSL.Connection.recv()`` and ``OpenSSL.SSL.Connection.recv_into()``.
400 `#294 <https://github.com/pyca/pyopenssl/pull/294>`_
401- Added ``OpenSSL.SSL.Connection.get_protocol_version()`` and ``OpenSSL.SSL.Connection.get_protocol_version_name()``.
402 `#244 <https://github.com/pyca/pyopenssl/pull/244>`_
403- Switched to ``utf8string`` mask by default.
404 OpenSSL formerly defaulted to a ``T61String`` if there were UTF-8 characters present.
405 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 +0100406 This will default us to the setting that actually works.
407 To revert this you can call ``OpenSSL.crypto._lib.ASN1_STRING_set_default_mask_asc(b"default")``.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100408 `#234 <https://github.com/pyca/pyopenssl/pull/234>`_
Hynek Schlawack682443f2015-10-25 16:15:12 +0100409
410
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100411----
412
Hynek Schlawack682443f2015-10-25 16:15:12 +0100413
414Older Changelog Entries
415-----------------------
416
Hynek Schlawack0cc61542016-01-19 14:09:32 +0100417The changes from before release 16.0.0 are preserved in the `repository <https://github.com/pyca/pyopenssl/blob/master/doc/ChangeLog_old.txt>`_.