switch to spake2==0.3, with the faster symmetric algorithm

Note that this breaks compatibility of SymmetricWormhole, which was
previously only used by the Twisted flavor.
This commit is contained in:
Brian Warner 2015-09-22 01:03:43 -07:00
parent 88dab265de
commit b97b7ccd8c

View File

@ -20,7 +20,7 @@ setup(name="magic-wormhole",
package_data={"wormhole": ["db-schemas/*.sql"]},
entry_points={"console_scripts":
["wormhole = wormhole.scripts.runner:entry"]},
install_requires=["spake2==0.2", "pynacl", "requests", "argparse"],
install_requires=["spake2==0.3", "pynacl", "requests", "argparse"],
test_suite="wormhole.test",
cmdclass=commands,
)