-
Notifications
You must be signed in to change notification settings - Fork 16
Fix signature #114
New issue
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
Fix signature #114
Conversation
Signed-off-by: HanslettTheDev <[email protected]>
requirements.txt
Outdated
| git+https://github.com/pysimplesoap/pysimplesoap.git@py311#pysimplesoap; | ||
| cryptography==3.3.2; python_version <= '2.7' | ||
| cryptography==3.4.7; python_version > '3' | ||
| cryptography==41.0.0; python_version > '3' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @HanslettTheDev!. Check the cryptography version for python 3. There is no 41 yet. The last in pypi is 40.0.2 and @salticus in his update uses 39.0.2 version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I think i will fix that as well. I'm still making some changes
wsaa.py
Outdated
| from cryptography.hazmat.primitives import serialization | ||
| from cryptography.hazmat.primitives.asymmetric import rsa | ||
| from cryptography.hazmat.bindings.openssl.binding import Binding | ||
| from cryptography.hamzat.primitives.serialization import pkcs7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @HanslettTheDev! here is the typo flagged in discord
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I see the error now
I wrote instead hamzat instead of hazmat. Thanks Nico!
Signed-off-by: HanslettTheDev <[email protected]>
…dules Signed-off-by: HanslettTheDev <[email protected]>
…dules; commit signed Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
fix: fixed the error when replacing the links with the module name The overall errors fixed was to prevent the setup.py build from failing Signed-off-by: HanslettTheDev <[email protected]>
… the clone of the pycon commit Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
4282bf4 to
f1d312d
Compare
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Co-authored-by: Nico Sandoval <[email protected]>
…signing method using pkcs7 and wrote a backward compatible code for python2.7 Signed-off-by: HanslettTheDev <[email protected]>
Signed-off-by: HanslettTheDev <[email protected]>
Summary
This pull requests aims to improve the work done in #113. Updating the cryptography module, fixing the broken tests and libraries
Checklist