An open API service indexing awesome lists of open source software.

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

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)