repo.or.cz
/
python-cryptoplus.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve English
[python-cryptoplus.git]
/
src
/
CryptoPlus
/
__init__.py
blob
add0b8bc6450751f5cb8be97a664857d53f680b8
1
from
pkg_resources
import
parse_version
2
import
Crypto
3
__all__
= [
"Cipher"
,
"PublicKey"
,
"Util"
,
"Protocol"
,
"Hash"
,
"testvectors"
,
"SelfTest"
]
4
5
if
parse_version
(
Crypto
.__
version
__
) >
parse_version
(
"2.0.1"
):
6
__all__
.
append
(
"Random"
)
7
8
#del parse_version
9
#del Crypto