From 291b57b99a3ede685323a847fff64358a390ca18 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 26 Jul 2015 12:45:34 +0200 Subject: [PATCH] add pycrypto to dependencies in setup --- RELEASE-NOTES | 15 ++++++++------- setup.py | 1 + 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 8eeabc65..a11cf93b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,11 +1,12 @@ # Release 2.4 - * The Openalias/DNSSEC plugin was merged into the main electrum code. - The validation of aliases uses DNSSEC and requires pyCrypto. - * The DNSSEC validation code was rewritten. The previous validation - method, which was part of the OpenAlias plugin, is vulnerable and - should not be trusted (Electrum 2.0 to 2.3). - * BIP70 payment requests can be signed using Bitcoin keys stored in - DNS (OpenAlias). The identity of the requestor is verified using + * Payment to DNS names storing a Bitcoin addresses (OpenAlias) is + supported directly, without activating a plugin. The verification + uses DNSSEC. + * The DNSSEC verification code was rewritten. The previous code, + which was part of the OpenAlias plugin, is vulnerable and should + not be trusted (Electrum 2.0 to 2.3). + * Payment requests can be signed using Bitcoin addresses stored + in DNS (OpenAlias). The identity of the requestor is verified using DNSSEC. * Payment requests signed with OpenAlias keys can be shared as bitcoin: URIs, if they are simple (a single address-type diff --git a/setup.py b/setup.py index 2f2cca52..fa36da6f 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ setup( name="Electrum", version=version.ELECTRUM_VERSION, install_requires=[ + 'pycrypto', 'slowaes>=0.1a1', 'ecdsa>=0.9', 'pbkdf2',