We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0384071 commit fa4de18Copy full SHA for fa4de18
1 file changed
suplemon/modules/crypt.py
@@ -2,8 +2,11 @@
2
import base64
3
import hashlib
4
import binascii
5
-from Crypto import Random
6
-from Crypto.Cipher import AES
+try:
+ from Crypto import Random
7
+ from Crypto.Cipher import AES
8
+except:
9
+ pass
10
11
from suplemon.suplemon_module import Module
12
from suplemon.prompt import PromptPassword
0 commit comments