We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b03b574 commit f0ddb85Copy full SHA for f0ddb85
2 files changed
EncryptoPack.py
@@ -12,8 +12,12 @@
12
import string
13
import random
14
15
-from Cryptodome.Random import get_random_bytes
16
-from Cryptodome.Cipher import AES
+# from Cryptodome.Random import get_random_bytes
+# from Cryptodome.Cipher import AES
17
+
18
+# Import statements changed from Cryptodome to Crypto in newer version of 'pycryptodome'
19
+from Crypto.Random import get_random_bytes
20
+from Crypto.Cipher import AES
21
22
23
def get_optimal_block_size():
requrements.txt
@@ -1,3 +1,3 @@
1
pyqt5
2
psutil
3
-pycryptodome
+pycryptodome
0 commit comments