Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

https interface for user management #648

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change htpasswd encryption from 'crypt' to sha512
  • Loading branch information
nanda committed Mar 27, 2021
commit 4febd150df2ab2ec852d1cfabdc0ba6d4425209f
2 changes: 1 addition & 1 deletion bin/openssl-htpasswd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ensure_pwd()
{
[ "$STDIN" = 1 ] && read -s PWD
[ -z "$PWD" ] && echo "missing or empty password" >&2 && print_help >&2 && exit 1
PWD=$(openssl passwd -crypt "$PWD")
PWD=$(openssl passwd -6 "$PWD")
}

action="modify"
Expand Down