]> git.codecow.com Git - Monocypher.git/commitdiff
README nitpick
authorLoup Vaillant <loup@loup-vaillant.fr>
Sat, 19 Oct 2019 13:03:34 +0000 (15:03 +0200)
committerLoup Vaillant <loup@loup-vaillant.fr>
Sat, 19 Oct 2019 13:03:34 +0000 (15:03 +0200)
README.md

index ce2e603726702119a0065d907ed9f04c2ccbaebf..02d75f8836ba99b8899af7de07835179f1c6a747 100644 (file)
--- a/README.md
+++ b/README.md
@@ -164,11 +164,11 @@ contains the `-DED25519_SHA512` option. For instance:
     $ make CFLAGS="-O2 -DED25519_SHA512"
 
 The `-DBLAKE2_NO_UNROLLING` option is a performance tweak.  By default,
-Monocypher unrolls the Blake2b inner loop, because it is over 25% faster
-on modern processors.  On some embedded processors however, unrolling
-the loop makes it _slower_ (the unrolled loop is 5KB bigger, and may
-strain the instruction cache).  If you're using an embedded platform,
-try this option.  The binary will be smaller, perhaps even faster.
+Monocypher unrolls the Blake2b inner loop, because doing so is over 25%
+faster on modern processors.  Some embedded processors however, run the
+unrolled loop _slower_ (possibly because of the cost of fetching 5KB of
+additional code).  If you're using an embedded platform, try this
+option.  The binary will be about 5KB smaller, and in some cases faster.
 
 
 Contributor notes