From 647a9d1f9d0ef48f64df1710bf5cfd248b25555d Mon Sep 17 00:00:00 2001 From: Ozero4 <114027116+Ozero4@users.noreply.github.com> Date: Fri, 7 Mar 2025 17:00:13 +0100 Subject: [PATCH] Fix typo: nix to Unix --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0a24c1a..b417895 100644 --- a/readme.md +++ b/readme.md @@ -8,7 +8,7 @@ code is licensed under the permissive zlib license. 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/urandom` on nix). If you wish to be entirely portable define +Windows, `/dev/urandom` on Unix). 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 (which is simply a 256 bit (32 byte) cryptographic random number generator).