add pycrypto to dependencies in setup

This commit is contained in:
ThomasV 2015-07-26 12:45:34 +02:00
parent 0dc99a7a1f
commit 291b57b99a
2 changed files with 9 additions and 7 deletions

View File

@ -1,11 +1,12 @@
# Release 2.4 # Release 2.4
* The Openalias/DNSSEC plugin was merged into the main electrum code. * Payment to DNS names storing a Bitcoin addresses (OpenAlias) is
The validation of aliases uses DNSSEC and requires pyCrypto. supported directly, without activating a plugin. The verification
* The DNSSEC validation code was rewritten. The previous validation uses DNSSEC.
method, which was part of the OpenAlias plugin, is vulnerable and * The DNSSEC verification code was rewritten. The previous code,
should not be trusted (Electrum 2.0 to 2.3). which was part of the OpenAlias plugin, is vulnerable and should
* BIP70 payment requests can be signed using Bitcoin keys stored in not be trusted (Electrum 2.0 to 2.3).
DNS (OpenAlias). The identity of the requestor is verified using * Payment requests can be signed using Bitcoin addresses stored
in DNS (OpenAlias). The identity of the requestor is verified using
DNSSEC. DNSSEC.
* Payment requests signed with OpenAlias keys can be shared as * Payment requests signed with OpenAlias keys can be shared as
bitcoin: URIs, if they are simple (a single address-type bitcoin: URIs, if they are simple (a single address-type

View File

@ -29,6 +29,7 @@ setup(
name="Electrum", name="Electrum",
version=version.ELECTRUM_VERSION, version=version.ELECTRUM_VERSION,
install_requires=[ install_requires=[
'pycrypto',
'slowaes>=0.1a1', 'slowaes>=0.1a1',
'ecdsa>=0.9', 'ecdsa>=0.9',
'pbkdf2', 'pbkdf2',