-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# How to encrypt password with bcrypt? | ||
|
||
It is not safe to store password unencrypted, so this app uses `bcrypt` encryption. There are several ways to encrypt your password. | ||
|
||
## 1. Set password through web GUI | ||
Then the app will encrypt it for you. | ||
|
||
## 2. Encrypt password yourself | ||
On Linux encryption can be done with `htpasswd` command: | ||
```sh | ||
htpasswd -nbBC 10 USER YourSecretPassword | sed 's/USER://' | ||
``` | ||
|
||
## 3. Encrypt password online | ||
There are online tools for `bcrypt` encryption. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION=0.1.7 | ||
VERSION=0.1.8 |