mkpasswd
The server supports hashing of passwords and authentication tokens using bcrypt
. To take advantage of this, simply replace the plaintext password in the configuration with its bcrypt
hash, and the server will automatically utilize bcrypt
as needed.
A utility for creating bcrypt
hashes is included with the nats-server distribution (util/mkpasswd.go
). Running it with no arguments will generate a new secure password along with the associated hash. This can be used for a password or a token in the configuration.
Installing mkpasswd
mkpasswd
If you have go installed, you can easily install the mkpasswd
tool by doing:
Alternatively, you can:
Generating bcrypted passwords
With mkpasswd
installed:
If you already have a password selected, you can supply the -p
flag on the command line, enter your desired password, and a bcrypt
hash will be generated for it:
To use the password on the server, add the hash into the server configuration file's authorization section.
Note the client will still have to provide the plain text version of the password, the server however will only store the hash to verify that the password is correct when supplied.
最后更新于
这有帮助吗?