-
Notifications
You must be signed in to change notification settings - Fork 16
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
Fix signature #114
Conversation
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
requirements.txt
Outdated
@@ -3,7 +3,7 @@ httplib2==0.20.4; python_version > '3' | |||
pysimplesoap==1.08.14; python_version <= '2.7' | |||
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
@@ -54,6 +54,7 @@ | |||
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 <HanslettTheDev@gmail.com>
…dules Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
…dules; commit signed Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
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 <HanslettTheDev@gmail.com>
… the clone of the pycon commit Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
4282bf4
to
f1d312d
Compare
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Co-authored-by: Nico Sandoval <49107024+NicolasSandoval@users.noreply.github.com>
…signing method using pkcs7 and wrote a backward compatible code for python2.7 Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Signed-off-by: HanslettTheDev <HanslettTheDev@gmail.com>
Summary
This pull requests aims to improve the work done in #113. Updating the cryptography module, fixing the broken tests and libraries
Checklist