Skip to content

Commit 3e96a13

Browse files
committed
Made Python Crypto lib become a soft dependency.
1 parent 57df4b7 commit 3e96a13

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

scapy/all.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@
4040
from asn1.ber import *
4141
from asn1.mib import *
4242

43-
from crypto.cert import *
43+
from crypto import *

scapy/crypto/__init__.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,13 @@
33
## Copyright (C) Arnaud Ebalard <[email protected]>
44
## This program is published under a GPLv2 license
55

6-
__all__ = ["cert"]
6+
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

Comments
 (0)