Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-rsa-4.9-150400.12.3.1 RPM for noarch

From OpenSuSE Leap 15.6 for noarch

Name: python311-rsa Distribution: SUSE Linux Enterprise 15
Version: 4.9 Vendor: SUSE LLC <https://www.suse.com/>
Release: 150400.12.3.1 Build date: Wed Oct 25 11:18:57 2023
Group: Development/Languages/Python Build host: h01-ch4c
Size: 208464 Source RPM: python-rsa-4.9-150400.12.3.1.src.rpm
Packager: https://www.suse.com/
Url: https://stuvel.eu/rsa
Summary: Pure-Python RSA Implementation
Python-RSA is a pure-Python RSA implementation. It supports encryption and
decryption, signing and verifying signatures, and key generation according to
PKCS#1 version 1.5.

Provides

Requires

License

Apache-2.0

Changelog

* Fri Apr 21 2023 dmueller@suse.com
  - add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 mcepl@suse.com
  - Make calling of %{sle15modernpython} optional.
* Sun Jul 24 2022 dmueller@suse.com
  - update to 4.9:
    * Remove debug logging from `rsa/key.py`
    * Remove overlapping slots in `PrivateKey` and `PublicKey`.
    * Do not include CHANGELOG/LICENSE/README.md in wheel
    * Fixed Key Generation Unittest: Public and Private keys are assigned the wrong way around
* Sat Jun 25 2022 dmueller@suse.com
  - update to 4.8:
    - Switch to [Poetry](https://python-poetry.org/) for dependency and release management.
    - Compatibility with Python 3.10.
    - Chain exceptions using `raise new_exception from old_exception`
    - Added marker file for PEP 561. This will allow type checking tools in dependent projects
    - Use the Chinese Remainder Theorem when decrypting with a private key. This
      makes decryption 2-4x faster
* Mon Aug 23 2021 schubi@suse.de
  - Use libalternatives instead of update-alternatives.
* Tue Mar 02 2021 dmueller@suse.com
  - update to 4.7.2:
    * Fix picking/unpickling issue introduced in 4.7
    * Fix threading issue introduced in 4.7
* Thu Jan 28 2021 dmueller@suse.com
  - update to 4.7 (CVE-2020-25658 bsc#1178676):
    * CVE-2020-25658 - Bleichenbacher-style timing oracle in PKCS#1 v1.5 decryption code
    * Add padding length check as described by PKCS#1 v1.5
    * Reuse of blinding factors to speed up blinding operations.
    * Declare & test support for Python 3.9
* Wed Dec 09 2020 code@bnavigator.de
  - Remove mypy test requirement. The test calls mypy via its API.
    But mypy as importable module is only available for the default
    python3 flavor. For packaging, we don't need to run the static
    type checker at all.
  - Remove mock requirement.
* Sun Aug 16 2020 jayvdb@gmail.com
  - Replace setup.py test with pytest
  - Remove %bcond_without tests
* Tue Jun 23 2020 dmueller@suse.com
  - update to 4.6.0 (CVE-2020-13757 bsc#1172389):
    * Choose blinding factor relatively prime to N. Thanks Christian Heimes for pointing this out.
    * Reject cyphertexts (when decrypting) and signatures (when verifying) that have been modified by prepending zero bytes. This resolves CVE-2020-13757. Thanks Carnil for pointing this out.
    * Rolled back the switch to Poetry, and reverted back to using Pipenv + setup.py for dependency management. There apparently is an issue no-binary installs of packages build with Poetry. This fixes #148
    Limited SHA3 support to those Python versions (3.6+) that support it natively. The third-party library that adds support for this to Python 3.5 is a binary package, and thus breaks the pure-Python nature of Python-RSA. This should fix #147.
    * Added support for Python 3.8.
    * Dropped support for Python 2 and 3.4.
    * Added type annotations to the source code. This will make Python-RSA easier to use in your IDE, and allows better type checking.
    * Added static type checking via MyPy.
    * Fix #129 Installing from source gives UnicodeDecodeError.
    * Switched to using Poetry for package management.
    * Choose blinding factor relatively prime to N. Thanks Christian Heimes for pointing this out.
    * Reject cyphertexts (when decrypting) and signatures (when verifying) that
    * have been modified by prepending zero bytes. This resolves CVE-2020-13757.
* Sat Mar 23 2019 dmueller@suse.com
  - fix build on older distributions
* Sat Feb 16 2019 jayvdb@gmail.com
  - Update to v 4.0.0
    * Removed deprecated modules:
      + rsa.varblock
      + rsa.bigfile
      + rsa._version133
      + rsa._version200
    * Removed CLI commands that use the VARBLOCK/bigfile format.
    * Ensured that PublicKey.save_pkcs1() and PrivateKey.save_pkcs1() always return bytes.
    * Dropped support for Python 2.6 and 3.3.
    * Dropped support for Psyco.
    * Miller-Rabin iterations determined by bitsize of key.
    * Added function `rsa.find_signature_hash()` to return the name of the
      hashing algorithm used to sign a message. `rsa.verify()` now also
      returns that name, instead of always returning `True`.
    * Add support for SHA-224 for PKCS1 signatures.
    * Transitioned from `requirements.txt` to Pipenv for package management.
* Tue Dec 04 2018 mcepl@suse.com
  - Remove superfluous devel dependency for noarch package
* Mon May 01 2017 toddrme2178@gmail.com
  - Update to Version 3.4.2
    * Fixed dates in CHANGELOG.txt
  - Update to Version 3.4.1
    * Included tests/private.pem in MANIFEST.in
    * Included README.md and CHANGELOG.txt in MANIFEST.in
  - Update to Version 3.4
    * Moved development to Github: https://github.com/sybrenstuvel/python-rsa
    * Solved side-channel vulnerability by implementing blinding, fixes #19
    * Deprecated the VARBLOCK format and rsa.bigfile module due to security issues, see
      https://github.com/sybrenstuvel/python-rsa/issues/13
    * Integration with Travis-CI, Coveralls and Code Climate
    * Deprecated the old rsa._version133 and rsa._version200 submodules, they will be
      completely removed in version 4.0.
    * Add an 'exponent' argument to key.newkeys()
    * Switched from Solovay-Strassen to Miller-Rabin primality testing, to
      comply with NIST FIPS 186-4 as probabilistic primality test
      (Appendix C, subsection C.3):
    * Fixed bugs #12, #14, #27, #30, #49
  - Update to Version 3.3
    * Thanks to Filippo Valsorda: Fix BB'06 attack in verify() by
      switching from parsing to comparison.
    * Simplified Tox configuration and dropped Python 3.2 support. The
      coverage package uses a u'' prefix, which was reintroduced in 3.3
      for ease of porting.
  - Update to Version 3.2.3
    * Added character encoding markers for Python 2.x
  - Update to Version 3.2.1
    * Added per-file licenses
    * Added support for wheel packages
    * Made example code more consistent and up to date with Python 3.4
  - Update to Version 3.2
    * Mentioned support for Python 3 in setup.py
  - Implement single-spec version.
  - Fix source URL.
  - Remove cve_2016-1494.diff, fixed in latest version.
* Tue Jan 05 2016 rjschwei@suse.com
  - Fix CVE 2016-1494 (bsc#960680)
    - Add patch cve_2016-1494.diff
* Tue Dec 01 2015 rjschwei@suse.com
  - Include version 3.1.4 in SLE 12 (FATE#319904, bsc#954690)
* Fri Nov 20 2015 p.drouand@gmail.com
  - Fix coreutils requirement
* Wed Sep 23 2015 rjschwei@suse.com
  - require coreutils (bsc#935595)
    + %pre section uses rm which is part of coreutils package
* Tue May 12 2015 benoit.monin@gmx.fr
  - update to version 3.1.4:
    * no changelog available
  - add test dependency python-unittest2
  - fix update-alternatives
  - run the tests with run_tests.py
  - add README.rst to the package documentation
* Sat Nov 08 2014 ledest@gmail.com
  - fix bashisms in pre script

Files

/etc/alternatives/pyrsa-decrypt
/etc/alternatives/pyrsa-encrypt
/etc/alternatives/pyrsa-keygen
/etc/alternatives/pyrsa-priv2pub
/etc/alternatives/pyrsa-sign
/etc/alternatives/pyrsa-verify
/usr/bin/pyrsa-decrypt
/usr/bin/pyrsa-decrypt-3.11
/usr/bin/pyrsa-encrypt
/usr/bin/pyrsa-encrypt-3.11
/usr/bin/pyrsa-keygen
/usr/bin/pyrsa-keygen-3.11
/usr/bin/pyrsa-priv2pub
/usr/bin/pyrsa-priv2pub-3.11
/usr/bin/pyrsa-sign
/usr/bin/pyrsa-sign-3.11
/usr/bin/pyrsa-verify
/usr/bin/pyrsa-verify-3.11
/usr/lib/python3.11/site-packages/rsa
/usr/lib/python3.11/site-packages/rsa-4.9-py3.11.egg-info
/usr/lib/python3.11/site-packages/rsa-4.9-py3.11.egg-info/PKG-INFO
/usr/lib/python3.11/site-packages/rsa-4.9-py3.11.egg-info/SOURCES.txt
/usr/lib/python3.11/site-packages/rsa-4.9-py3.11.egg-info/dependency_links.txt
/usr/lib/python3.11/site-packages/rsa-4.9-py3.11.egg-info/entry_points.txt
/usr/lib/python3.11/site-packages/rsa-4.9-py3.11.egg-info/requires.txt
/usr/lib/python3.11/site-packages/rsa-4.9-py3.11.egg-info/top_level.txt
/usr/lib/python3.11/site-packages/rsa/__init__.py
/usr/lib/python3.11/site-packages/rsa/__pycache__
/usr/lib/python3.11/site-packages/rsa/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/asn1.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/asn1.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/cli.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/cli.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/common.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/common.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/core.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/core.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/key.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/key.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/parallel.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/parallel.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/pem.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/pem.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/pkcs1.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/pkcs1.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/pkcs1_v2.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/pkcs1_v2.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/prime.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/prime.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/randnum.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/randnum.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/transform.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/transform.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/util.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rsa/__pycache__/util.cpython-311.pyc
/usr/lib/python3.11/site-packages/rsa/asn1.py
/usr/lib/python3.11/site-packages/rsa/cli.py
/usr/lib/python3.11/site-packages/rsa/common.py
/usr/lib/python3.11/site-packages/rsa/core.py
/usr/lib/python3.11/site-packages/rsa/key.py
/usr/lib/python3.11/site-packages/rsa/parallel.py
/usr/lib/python3.11/site-packages/rsa/pem.py
/usr/lib/python3.11/site-packages/rsa/pkcs1.py
/usr/lib/python3.11/site-packages/rsa/pkcs1_v2.py
/usr/lib/python3.11/site-packages/rsa/prime.py
/usr/lib/python3.11/site-packages/rsa/py.typed
/usr/lib/python3.11/site-packages/rsa/randnum.py
/usr/lib/python3.11/site-packages/rsa/transform.py
/usr/lib/python3.11/site-packages/rsa/util.py
/usr/share/doc/packages/python311-rsa
/usr/share/doc/packages/python311-rsa/README.md
/usr/share/licenses/python311-rsa
/usr/share/licenses/python311-rsa/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri May 3 23:33:27 2024