https://github.com/phxql/bcrypt-cli-go
Small CLI tool to use bcrypt from the commandline
https://github.com/phxql/bcrypt-cli-go
Last synced: 2 months ago
JSON representation
Small CLI tool to use bcrypt from the commandline
- Host: GitHub
- URL: https://github.com/phxql/bcrypt-cli-go
- Owner: phxql
- Created: 2018-08-13T10:21:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-14T09:48:48.000Z (almost 8 years ago)
- Last Synced: 2025-01-08T08:14:27.942Z (over 1 year ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BCrypt CLI
Usage: `bcrypt-cli-go [password] [rounds]`
* `password` defaults to `-`
* `rounds` defaults to `12`.
If `password` is `-`, read the password from stdin.
## Examples
```
bcrypt-cli-go
```
Reads the password from stdin, uses 12 rounds.
```
bcrypt-cli-go foobar
```
Uses `foobar` as the password with 12 rounds.
```
bcrypt-cli-go foobar 14
```
Uses `foobar` as the password with 14 rounds.
```
bcrypt-cli-go - 14
```
Reads the password from stdin, uses 14 rounds.
## License
[GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html)