Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1.04 KB

README.rst

File metadata and controls

38 lines (24 loc) · 1.04 KB

ed25519

https://travis-ci.org/dstufft/ed25519.png?branch=master

Ed25519 is a high speed public key signature system. ed25519.py is the reference implementation that has been optimized for a faster runtime. It does not include protections against side channel attacks. The original reference implementation can be found on the authors website.

Warning

This code is almost never what you want. It is hopefully useful in cases where you absolutely cannot have any C code dependencies. Unless you absolutely cannot have C code dependencies you would be better off using something like PyNaCl.

Running the tests

ed25519.py uses tox to run the test suite. You can run all the tests by using:

$ tox

Resources

  • IRC (#cryptography-dev - irc.freenode.net)