Password Generator User Interface
Password Generator Settings Form

This project is not covered by Drupal’s security advisory policy.

Synopsis

Password generator module provides a list of custom passwords from a phrase or set of words to memorize a thin part with moderate complexity.

This module allows you to choose encryption within a character number limit with the following properties: symbols and numbers.

Password generator provide a custom symbols settings form to generate custom passwords.

Installation

composer require 'drupal/pwdgen:^1.0'

Usage

Into administration configuration people area : admin/config/people/generate-password

Insert text to encrypt , select properties and submit the button.

Generated password will be displayed.

Drush

Drush command to generate password from phrase.

Examples:
drush pwdgen:generate 'your text' Generate password with 12 characters.
drush pwdgen:generate --length=20 'your text' Generate password with 20 characters.
drush pwdgen:generate --option=symbols 'your text' Generate password with symbols only.
drush pwdgen:generate --option=numbers 'your text' Generate password with numbers only.

Arguments:
Phrase to encrypt must have at least 6 characters.

Options:
--length[=LENGTH] Length of password. [default: 12]
--option[=OPTION] Option with password only or numbers only.

Aliases: pwdgen

Project information

Releases