We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pycrypto is dead. pycryptodome is a drop-in replacement. However, python-jws uses a private member (_RSAobj) of pycrypto:
_RSAobj
https://github.com/brianloveswords/python-jws/blob/master/jws/algos.py#L87
which pycryptodome doesn't have.
But pycryptodome does have the RsaKey member in the same place.
RsaKey
So a change something like https://github.com/mpdavis/python-jose/pull/8/files#diff-f5aa2743c17dabc292333673fe591c30R20 is required where the presence of each member is checked for.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
pycrypto is dead. pycryptodome is a drop-in replacement.
However, python-jws uses a private member (
_RSAobj
) of pycrypto:https://github.com/brianloveswords/python-jws/blob/master/jws/algos.py#L87
which pycryptodome doesn't have.
But pycryptodome does have the
RsaKey
member in the same place.So a change something like https://github.com/mpdavis/python-jose/pull/8/files#diff-f5aa2743c17dabc292333673fe591c30R20 is required where the presence of each member is checked for.
The text was updated successfully, but these errors were encountered: