openwifipass
openwifipass copied to clipboard
Cryptodome.Cipher Module not found
With python3 the import need to be adjusted:
openwifipass/GrantorHandler.py:
-from Cryptodome.Cipher import ChaCha20_Poly1305 +from Crypto.Cipher import ChaCha20_Poly1305
You probably have not installed pycryptodomex as indicated in here:
https://github.com/seemoo-lab/openwifipass/blob/8b63768ed5f69f943d2de8b668ae68ca3a01e089/setup.py#L43
Note that pycryptodomex implements the Cryptodome interface, while pycryptodome uses the "old" Crypto interface (source).