File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,19 +24,19 @@ The skeleton is based on [W3CSS](https://www.w3schools.com/w3css/), a very light
24
24
25
25
go build -tags="plain"
26
26
27
- Passwords are stored in plain text in the database and sent as plain text on mail to recovery (unrecomanded ).
27
+ Passwords are stored in plain text in the database and sent as plain text on mail to recovery (unrecommended ).
28
28
29
29
#### Hashed passwords
30
30
31
31
go build -tags="sha1 random"
32
32
33
- Passwords are stored hashed in the database and sent as random on mail to recovery (recomanded ).
33
+ Passwords are stored hashed in the database and sent as random on mail to recovery (recommended ).
34
34
35
35
#### Salted and hashed passwords
36
36
37
37
go build -tags="saltsha1 random"
38
38
39
- Passwords are stored salted and hashed in the database and sent as random on mail to recovery (highly recomanded ).
39
+ Passwords are stored salted and hashed in the database and sent as random on mail to recovery (highly recommended ).
40
40
41
41
The tag ` random ` mean send password as random string.
42
42
You can’t perform that action at this time.
0 commit comments