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
{{ message }}
This repository was archived by the owner on Apr 20, 2025. It is now read-only.
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.