Update readme.md

This commit is contained in:
Orson Peters 2013-03-13 11:37:57 +01:00
parent 5352a6b0fa
commit 7f36c7eff8
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ 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. If you wish to be entirely
generation which uses standard OS cryptography APIs (`CryptGenRandom` on Windows, `/dev/random` 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).