]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Change foolscap dependency to >= 0.8.0. refs #2400
authorDaira Hopwood <daira@jacaranda.org>
Tue, 28 Apr 2015 16:21:31 +0000 (17:21 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Tue, 28 Apr 2015 16:21:31 +0000 (17:21 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/_auto_deps.py

index 686a0ccefe7d853a11c6ed50a82bf4779fe6ab08..26eaee1ab86cff7d5f6030937eff7215b9dd530a 100644 (file)
@@ -34,7 +34,10 @@ install_requires = [
     # * foolscap < 0.6 is incompatible with Twisted 10.2.0.
     # * foolscap 0.6.1 quiets a DeprecationWarning.
     # * foolscap < 0.6.3 is incompatible with Twisted 11.1.0 and newer.
-    "foolscap >= 0.6.3",
+    # * foolscap 0.8.0 generates 2048-bit RSA-with-SHA-256 signatures,
+    #   rather than 1024-bit RSA-with-MD5. This also allows us to work
+    #   with a FIPS build of OpenSSL.
+    "foolscap >= 0.8.0",
 
     # Needed for SFTP.
     # pycrypto 2.2 doesn't work due to <https://bugs.launchpad.net/pycrypto/+bug/620253>