Add Argon2 credential hash support (#2888)

* Add argon2 credential hash support

* update README, tests and documentation

---------

Co-authored-by: aler9 <46489434+aler9@users.noreply.github.com>
This commit is contained in:
Sijmen
2024-01-13 12:49:08 +01:00
committed by GitHub
co-authored by aler9
parent 20bb9b90cd
commit 397c58a882
9 changed files with 330 additions and 58 deletions
+4 -4
View File
@@ -318,19 +318,19 @@ pathDefaults:
# Default path settings -> Authentication
# Username required to publish.
# SHA256-hashed values can be inserted with the "sha256:" prefix.
# Hashed values can be inserted with the "argon2:" or "sha256:" prefix.
publishUser:
# Password required to publish.
# SHA256-hashed values can be inserted with the "sha256:" prefix.
# Hashed values can be inserted with the "argon2:" or "sha256:" prefix.
publishPass:
# IPs or networks (x.x.x.x/24) allowed to publish.
publishIPs: []
# Username required to read.
# SHA256-hashed values can be inserted with the "sha256:" prefix.
# Hashed values can be inserted with the "argon2:" or "sha256:" prefix.
readUser:
# password required to read.
# SHA256-hashed values can be inserted with the "sha256:" prefix.
# Hashed values can be inserted with the "argon2:" or "sha256:" prefix.
readPass:
# IPs or networks (x.x.x.x/24) allowed to read.
readIPs: []