From 672234aaeac1651527096414617f723b3ecbc975 Mon Sep 17 00:00:00 2001 From: Mathieu Debove Date: Fri, 13 Mar 2020 17:30:04 +0100 Subject: [PATCH] docs: terminology, replace 'encoded' by 'hashed' --- docs/content/middlewares/basicauth.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/middlewares/basicauth.md b/docs/content/middlewares/basicauth.md index 6e224a68e..7d5b8ebc9 100644 --- a/docs/content/middlewares/basicauth.md +++ b/docs/content/middlewares/basicauth.md @@ -71,7 +71,7 @@ http: ### General -Passwords must be encoded using MD5, SHA1, or BCrypt. +Passwords must be hashed using MD5, SHA1, or BCrypt. !!! tip @@ -79,7 +79,7 @@ Passwords must be encoded using MD5, SHA1, or BCrypt. ### `users` -The `users` option is an array of authorized users. Each user will be declared using the `name:encoded-password` format. +The `users` option is an array of authorized users. Each user will be declared using the `name:hashed-password` format. !!! note "" @@ -165,7 +165,7 @@ http: The `usersFile` option is the path to an external file that contains the authorized users for the middleware. -The file content is a list of `name:encoded-password`. +The file content is a list of `name:hashed-password`. !!! note ""