No description
| src | ||
| .editorconfig | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
| shard.yml | ||
Hash your own passwords
password_generator is command-line tool to generate passwords. It takes two parameters from STDIN: secret and payload.
With a hardcoded salt and the 2 input variables, it generates a SHA256 hash, and displays it in base64.
Example usage:
Enter secret:
Enter payload: sentry
Result: +W2cbbQ39p+3R1Yszh7qXKrcpBVYgbLASU34SzO204Q=
Installation
Run the application:
crystal run src/password_generator.cr
Compile a statically-linked executable:
crystal build src/password_generator.cr --release --no-debug --static
Contributing
- Fork it (https://git.nikobojs.com/nikobojs/password_generator)
- Create your feature branch
- Commit your changes
- Push to the branch
- Create a merge request
Contributors
- nikobojs - creator and maintainer