ed25519
ed25519 copied to clipboard
Optimized version of the reference implementation of Ed25519
To be run like `python profile.py sig 400` which will run 400 cases of signature generation and display the cProfile results for the function calls made. Allows you to see...
I added a simple profiling script to show call profiles of the main functions. This allowed me to see that the manual bit unpacking performed by the likes of ```...
Are there plans to have this optimized version of the reference implementation available on PyPI?
My understanding is that we're concerned that any function over the secret-key (or something derived from it), must take time independent of the input value. Here are possible issues I...