Compare commits

...

2 Commits

Author SHA1 Message Date
BohwaZ 18ba8ffb17
Merge pull request #9 from clach04/patch-1
clarify password hashing
2023-04-02 17:56:49 +02:00
clach04 dd83f184a9
clarify password hashing
Code hashes (a best practice) passwords rather than encrypting them.
2023-04-02 08:53:08 -07:00
1 changed files with 2 additions and 2 deletions

View File

@ -71,9 +71,9 @@ password = verySecret
write = true
```
Note that PicoDAV will replace this password with an encrypted version the next time it is accessed, don't worry about that, this is for extra safety, just in case the `.picodav.ini` is accessed by a hacker if you made mistake in your web server configuration.
Note that PicoDAV will replace this password with a hashed version the next time it is accessed, don't worry about that, this is for extra safety, just in case the `.picodav.ini` is accessed by a hacker if you made mistake in your web server configuration.
Here is an example of the password once it has been encrypted:
Here is an example of the password once it has been hashed:
```
password = '$2y$10$fbdabTjNPN3gMAUlaSEoR.kKHLnh0yMGneuJ7P2AOhSSNr8gUaCPu'