summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2024-08-29 08:00:12 +0200
committerRemi Collet <remi@php.net>2024-08-29 08:00:12 +0200
commit224d3c0463901b3a0fa0c6b1d1dc0084bf37ec26 (patch)
treebda6134b403da858b850403126329b4b1c996b2a
parent003f1037b71148947cf7fc8d18a4b0cc26f5fe43 (diff)
more bench in README
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index c34a19d..82d97b7 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ This extension provides password hashing algorithms used by Linux distributions.
* **sha512** (`$6$`) provided for legacy as used on some old distributions (ex: RHEL-8)
* **yescrypt** (`$y$`) used on modern distributions
-Notices: these are fast, don't expect high security level.
+Notices: these can be fast, don't expect improved security level.
**Computation time**
@@ -13,7 +13,10 @@ Notices: these are fast, don't expect high security level.
* argon2i: 0.53"
* argon2id: 0.55"
* sha512: 0.01"
-* yescrypt: 0,08"
+* yescrypt: 0,07" with default cost of 5
+* yescrypt: 0,14" with cost=6
+* yescrypt: 0,30" with cost=7
+* yescrypt: 0,62" with cost=8
# Sources