You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most test cases in the tests.test_key.KeyGenTest test class are like
priv, pub=rsa.key.newkeys(...)
but it should be
pub, priv=rsa.key.newkeys(...)
In most test cases this is not a problem since only some common aspects are tested, but it is still formally wrong and might introduce bugs in some cases.
The text was updated successfully, but these errors were encountered:
## Version 4.9 - release 2022-07-20
- Remove debug logging from `rsa/key.py`
([#194](sybrenstuvel/python-rsa#194)).
- Remove overlapping slots in `PrivateKey` and `PublicKey`.
([#189](sybrenstuvel/python-rsa#189)).
- Do not include CHANGELOG/LICENSE/README.md in wheel
([#191](sybrenstuvel/python-rsa#191)).
- Fixed Key Generation Unittest: Public and Private keys are assigned the wrong way around
([#188](sybrenstuvel/python-rsa#188)).
mtremer
pushed a commit
to ipfire/ipfire-2.x
that referenced
this issue
Nov 11, 2022
- Updated from version 4.8 to 4.9
- Update of rootfile
- Changelog
## Version 4.9 - release 2022-07-20
- Remove debug logging from `rsa/key.py`
([#194](sybrenstuvel/python-rsa#194)).
- Remove overlapping slots in `PrivateKey` and `PublicKey`.
([#189](sybrenstuvel/python-rsa#189)).
- Do not include CHANGELOG/LICENSE/README.md in wheel
([#191](sybrenstuvel/python-rsa#191)).
- Fixed Key Generation Unittest: Public and Private keys are assigned the wrong way around
([#188](sybrenstuvel/python-rsa#188)).
Tested-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Most test cases in the
tests.test_key.KeyGenTest
test class are likebut it should be
In most test cases this is not a problem since only some common aspects are tested, but it is still formally wrong and might introduce bugs in some cases.
The text was updated successfully, but these errors were encountered: