summaryrefslogtreecommitdiffstats
path: root/libraries/argon2/README
diff options
context:
space:
mode:
author Mario Preksavec <mario at slackware dot hr>2017-08-09 00:39:45 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-08-12 06:57:37 +0700
commitdd51444fe8f2b813d7bd6435b59185e43363205b (patch)
tree5e6be11eb7220e24b38fa5cdd51d1873f63e12b0 /libraries/argon2/README
parent4f730f1306d6aaa0eaa684831e41ffa472bd441c (diff)
downloadslackbuilds-dd51444fe8f2b813d7bd6435b59185e43363205b.tar.gz
slackbuilds-dd51444fe8f2b813d7bd6435b59185e43363205b.tar.xz
libraries/argon2: Added (password-hashing function).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'libraries/argon2/README')
-rw-r--r--libraries/argon2/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/libraries/argon2/README b/libraries/argon2/README
new file mode 100644
index 0000000000..d4460f624c
--- /dev/null
+++ b/libraries/argon2/README
@@ -0,0 +1,11 @@
+This is the reference C implementation of Argon2, the password-hashing
+function that won the Password Hashing Competition (PHC).
+
+Argon2 is a password-hashing function that summarizes the state of the art
+in the design of memory-hard functions and can be used to hash passwords
+for credential storage, key derivation, or other applications.
+
+It has a simple design aimed at the highest memory filling rate and effective
+use of multiple computing units, while still providing defense against
+tradeoff attacks (by exploiting the cache and memory organization of the
+recent processors).