From d8b96068f3fe3461db6c55ede56858fe0c1405ee Mon Sep 17 00:00:00 2001 From: Ben Martin Date: Mon, 22 Apr 2024 13:50:53 +1000 Subject: [PATCH] lint --- docs/sql.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/sql.md b/docs/sql.md index f32c35e..3fc54ee 100644 --- a/docs/sql.md +++ b/docs/sql.md @@ -2,7 +2,7 @@ ============= These are authentication modules for authenticating a user against a -SQL database. +SQL database. The SQL module performs password verification in the database itself using database functions such as sha512 and storing a salt in the @@ -13,8 +13,6 @@ support in the database or to allow the same code to work against many databases without modification. More information on PasswordVerify is provided at the end of this document. - - Options ------- @@ -194,11 +192,10 @@ used instead as an additional security measure. One way hashing algorithms like MD5 or SHA1 are considered insecure and should therefore be avoided. - The PasswordVerify module ------------------------- -Users and passwords have to be set in the database by other means than the PasswordVerify module. +Users and passwords have to be set in the database by other means than the PasswordVerify module. For example: @@ -212,7 +209,7 @@ For example: ); ``` -A user can be added with a known password "FIXMEPASSWORD" as shown below. +A user can be added with a known password "FIXMEPASSWORD" as shown below. ```php $dsn = "pgsql:host=...";