We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57df4b7 commit 3e96a13Copy full SHA for 3e96a13
scapy/all.py
@@ -40,4 +40,4 @@
40
from asn1.ber import *
41
from asn1.mib import *
42
43
-from crypto.cert import *
+from crypto import *
scapy/crypto/__init__.py
@@ -3,4 +3,13 @@
3
## Copyright (C) Arnaud Ebalard <[email protected]>
4
## This program is published under a GPLv2 license
5
6
-__all__ = ["cert"]
+
7
8
+try:
9
+ import Crypto
10
+except ImportError:
11
+ import logging
12
+ log_loading = logging.getLogger("scapy.loading")
13
+ log_loading.info("Can't import python Crypto lib. Disabled certificate manipulation tools")
14
+else:
15
+ from scapy.crypto.cert import *
0 commit comments