secure_password_generator 1.0.2
secure_password_generator: ^1.0.2 copied to clipboard
A CLI application to generate secure passwords
Command Line password and passphrase generator. #
This is a command-line interface (CLI) application for generating secure passwords. It is written in Dart and can be run on any platform that supports the Dart runtime.
Installation #
From source #
To install this application, you first need to install Dart. You can download Dart from the official Get the Dart SDK. Once you have installed Dart, you can install this application using the following command:
Get source
$ dart pub global activate password_generator
This will download and install the latest version of the password_generator package from pub.dev, which includes the CLI application.
Usage
To use this application, simply run the following command:
$ password_generator <length>
For example, to generate a password that is 12 characters long and includes symbols, run the following command:
$ password_generator 12
How To:
See Examples