tintinweb / scapy-ssl_tls

SSL/TLS layers for scapy the interactive packet manipulation tool
GNU General Public License v2.0
419 stars 156 forks source link

use pycryptodomex instead of pycryptodome to avoid namespace collision #80

Closed tintinweb closed 8 years ago

tintinweb commented 8 years ago

ref https://github.com/tintinweb/scapy-ssl_tls/pull/77#issuecomment-259919606

Btw. we can run pycryptodome and pycrypto in parallel by using pycryptodomex package instead of pycryptodome. It will then have a Cryptodome namespace instead of Crypto. That should solve the namespace conflict.

replace requirement pycryptodome with pycryptodomex to avoid problems when we expect Crypto to be pycryptodome while it might only be pycrypto.

setup.py, requirements.txt

tintinweb commented 8 years ago

closing this issue, we'll track this with PR #82