We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As a user, I would like to be able to hash my password using the same bcrypt algorithm used by code-server.
bcrypt
However, the bcrypt and bcrypt.js algorithms are different so you can't in the same way you can with sha256.
bcrypt.js
sha256
Add a CLI option to set password (which we hash for User using bcrypt)
code-server --config password=<password> -> hashes and stores in config.yaml
code-server --config password=<password>
config.yaml
(open to other ideas for this though^)
Todos
The text was updated successfully, but these errors were encountered:
would be good if the user could provide password via stdin to avoid having the plaintext password in their shell history.
Sorry, something went wrong.
Didn't even think to consider that - great point @rabidpug 👍
Put a space before your command, this way it won't be stored in history.
Merging with #3546
jsjoeio
No branches or pull requests
Problem
As a user, I would like to be able to hash my password using the same
bcrypt
algorithm used by code-server.However, the
bcrypt
andbcrypt.js
algorithms are different so you can't in the same way you can withsha256
.Solution
Add a CLI option to set password (which we hash for User using
bcrypt
)code-server --config password=<password>
-> hashes and stores inconfig.yaml
(open to other ideas for this though^)
Todos
The text was updated successfully, but these errors were encountered: