Use cryptography instead of pycrypto#11
Use cryptography instead of pycrypto#11Taik wants to merge 4 commits inton8henrie:masterfrom Taik:pypy
Conversation
|
Cool, thanks for the contribution! I'm running into an issue installing cryptography with pypy-5.1.1 on OS X. Interestingly, it works fine installing with python3, just has an issue with pypy. Also unfortunate that cryptography seems to be incompatible with pypy3, though I suppose not a critical issue. |
|
Got it -- I'm surprised to see that pypy doesn't seem to improve performance vs python2, though python 2.7.10, using
|
|
Hey, glad to see you got As for pypy performance gains, what you see is pretty much expected. Pypy provides a JIT which isn't going to get much warm-up time if we are running synthetic benchmarks like Cryptography is fully working with CPython 2-3, and Pypy2. Pypy3 is unfortunately not maintained (as most of their donations go towards maintaining CPython2 compatibility). |
|
Merged in 7720195. Thank you! |
In order to support pypy, I converted this library over to using the cryptography package. Let me know if you need anything else.