Update readme.md

This commit is contained in:
Orson Peters 2013-03-18 17:27:24 +01:00
parent 7f36c7eff8
commit c1423cf19d
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
Ed25519
-------
=======
This is a portable implementation of [Ed25519](http://ed25519.cr.yp.to/) based
on the SUPERCOP "ref10" implementation. All code is in the public domain.
All code is pure ANSI C without any dependencies, except for the random seed
generation which uses standard OS cryptography APIs (`CryptGenRandom` on Windows, `/dev/random` on *nix). If you wish to be entirely
generation which uses standard OS cryptography APIs (`CryptGenRandom` on Windows, `/dev/urandom` on *nix). If you wish to be entirely
portable define `ED25519_NO_SEED`. This disables the `ed25519_create_seed`
function, so if your application requires key generation you must supply your
own seeding function (simply a 32 byte random number generator).