Switch to using pycryptodome instead of pycrypto

pycrypto is not being maintained, and pycryptodome is theoretically
a drop-in replacement (in practice, it seems it was close)
This commit is contained in:
Magnus Hagander
2019-11-01 14:52:35 +01:00
parent a7a7400d09
commit 12306255ad
6 changed files with 15 additions and 15 deletions

View File

@ -5,7 +5,7 @@
# community authentication integration.
#
from Crypto import Random
from Cryptodome import Random
import base64
if __name__ == "__main__":