forked from pool/python-pem
* Support for Python 2.7, 3.5, and 3.6 has been dropped. * Support for RFC 4880 OpenPGP private & public keys: `pem.OpenPGPPublicKey` and `pem.OpenPGPPrivateKey`. * Support for intra-payload headers like the ones used in OpenPGP keys using the `meta_headers` property. * `pem.parse_file()` now accepts also `pathlib.Path` objects. * `pem.parse()` now also accepts `str`. * Added `text_payload`, `bytes_payload` and `decoded_payload` properties to all PEM objects that allow to directly access the payload without the envelope and possible headers. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pem?expand=0&rev=16
77 lines
3.3 KiB
Plaintext
77 lines
3.3 KiB
Plaintext
-------------------------------------------------------------------
|
|
Sun Jan 7 21:59:56 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
|
|
|
- update to 23.1.0:
|
|
* Support for Python 2.7, 3.5, and 3.6 has been dropped.
|
|
* Support for RFC 4880 OpenPGP private & public keys:
|
|
`pem.OpenPGPPublicKey` and `pem.OpenPGPPrivateKey`.
|
|
* Support for intra-payload headers like the ones used in
|
|
OpenPGP keys using the `meta_headers` property.
|
|
* `pem.parse_file()` now accepts also `pathlib.Path` objects.
|
|
* `pem.parse()` now also accepts `str`.
|
|
* Added `text_payload`, `bytes_payload` and `decoded_payload`
|
|
properties to all PEM objects that allow to directly access
|
|
the payload without the envelope and possible headers.
|
|
|
|
-------------------------------------------------------------------
|
|
Mon Jul 3 11:37:48 UTC 2023 - ecsos <ecsos@opensuse.org>
|
|
|
|
- Add %{?sle15_python_module_pythons}
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Jun 21 20:37:10 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
|
|
|
- Update to 21.2.0
|
|
* Added support for pem.OpenSSLTrustedCertificate (-----BEGIN
|
|
TRUSTED CERTIFICATE-----), as defined in openssl x509 manual.
|
|
#28
|
|
* Added support for DSA private keys (BEGIN DSA PRIVATE). This is
|
|
also the OpenSSH legacy PEM format. #49
|
|
* Added support for pem.SSHPublicKey (---- BEGIN SSH2 PUBLIC KEY
|
|
----), as defined in RFC 4716. #46
|
|
* Added support for pem.SSHCOMPrivateKey (---- BEGIN SSH2
|
|
ENCRYPTED PRIVATE KEY ----), the SSH.com / Tectia private key
|
|
format (plain or encrypted). #46
|
|
- Actually requires twisted[tls]: python-Twisted-tls
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Mar 24 13:24:05 UTC 2020 - pgajdos@suse.com
|
|
|
|
- version update to 20.1.0
|
|
- Carriage returns (``\r``) are now stripped before hashing ``pem`` objects to provide consistent hashes across platforms.
|
|
`#40 <https://github.com/hynek/pem/issues/40>`_
|
|
- Python 3.4 is not supported anymore.
|
|
It has been unsupported by the Python core team for a while now and its PyPI downloads are negligible.
|
|
- Added support for ``pem.OpenSSHPrivateKey`` (``OPENSSH PRIVATE KEY``).
|
|
OpenSSH added a new ``BEGIN`` label when it switched to a proprietary key encoding.
|
|
`#39 <https://github.com/hynek/pem/pull/39>`_
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Sep 11 08:15:02 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Update to 19.2.0:
|
|
* Added support for pem.ECPrivateKey (EC PRIVATE KEY).
|
|
|
|
-------------------------------------------------------------------
|
|
Fri May 17 09:25:10 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
|
|
|
|
- update to version 19.1.0
|
|
* You can now load encrypted PKCS#8 PEM key as ``pem.Key``.
|
|
* Added support for ``pem.PublicKey`` (``PUBLIC KEY``).
|
|
* Added support for ``pem.RSAPublicKey`` (``RSA PUBLIC KEY``).
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Feb 12 10:07:08 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
|
|
|
- Trim replicated metadata from description.
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Feb 12 09:05:10 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Mark as noarch since the package does not compile anything
|
|
|
|
-------------------------------------------------------------------
|
|
Thu Feb 7 11:47:31 UTC 2019 - ecsos@opensuse.org
|
|
|
|
- initial version 18.2.0
|