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
With python3 the import need to be adjusted:
openwifipass/GrantorHandler.py:
-from Cryptodome.Cipher import ChaCha20_Poly1305 +from Crypto.Cipher import ChaCha20_Poly1305
The text was updated successfully, but these errors were encountered:
You probably have not installed pycryptodomex as indicated in here:
pycryptodomex
openwifipass/setup.py
Line 43 in 8b63768
Note that pycryptodomex implements the Cryptodome interface, while pycryptodome uses the "old" Crypto interface (source).
Cryptodome
pycryptodome
Crypto
Sorry, something went wrong.
No branches or pull requests
With python3 the import need to be adjusted:
openwifipass/GrantorHandler.py:
-from Cryptodome.Cipher import ChaCha20_Poly1305
+from Crypto.Cipher import ChaCha20_Poly1305
The text was updated successfully, but these errors were encountered: