Random Password Generator for Laravel

Fund package maintenance!
TechTailor

Installs: 38 312

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 3

Forks: 2

Open Issues: 0

Type:laravel

v1.0.4 2018-03-02 20:20 UTC

This package is auto-updated.

Last update: 2024-05-24 21:57:30 UTC


README

GitHub release GitHub issues 68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5374796c6543492d7061737365642d677265656e2e7376673f7374796c653d666f722d7468652d62616467652626636f6c6f72423d464636394234 Software License Total Downloads Twitter

This package is a simple Laravel untility that allows you to generate complex passwords using a simple Facade.

Installation

Step 1: Install Through Composer

$ composer require techtailor/rpg

Step 2: Add the Service Provider (Skip this step for Laravel 5.5 or higher)

In the 'config/app.php' file -

'providers' => [
    // ...
    TechTailor\RPG\RPGServiceProvider::class,
];

Step 3: Add the Alias (Skip this step for Laravel 5.5 or higher)

In the 'config/app.php' file -

'aliases' => [
    // ...
    'RPG' => TechTailor\RPG\Facade\RPG::class,
];

In Laravel 5.5 & higher the package will autoregister the service provider and the alias.

Usage

In order to use the included RPG Facade, import the following in your file

use TechTailor\RPG\Facade\RPG;

The RPG Facade comes with three basic methods - Generate, Preset and Decrypt

The Generate method allows you to pass custom specifications for the generator.

 RPG::Generate($character, $size, $dashes, $encrypt);

Lets go into a bit detail about each of the specifications that can be provided

$character 
//Accepts a string of letters called "luds"
//Where > l is for lowercase alphabets
        > u is for uppercase alphabets
        > d is for digits
        > s is for special characters'
//The combination of these letters will provide the character set for the generator. Ex: 'ld' will only generate string with lowercase alphabets and digits.
$size
//The total size/lenght of the string your want to generate. 
//Ex : 15 - will generate a string of total 15 characters using the character set your selected
$dashes (defaults to 0)
//Two options - 0 or 1
//Using '1' - will add multiple dashes (-) randomly within the string generated.
$encrypt (defaults to 0)
//Two options - 0 or 1
//Using '1' - will return you an encrypted version of the password. Can be decrypted using RPG::Decrypt.

Example command for generating a password string of 16 characters with dashes using the 'lud (lowercase, uppercase, digits)' character set -

return RPG::Generate('lud',16,1); //Result: 37vX-zerT-weSa-vCC3

Example command for generating an encrypted password string of 16 characters with dashes using the 'lud (lowercase, uppercase, digits)' character set -

return RPG::Generate('lud',16,1,1); 

//Result: eyJpdiI6IjdTK3ZmMGZXNXl2a2xQSU1sNVhKZEE9PSIsInZhbHVlIjoiK1NxcTdUbVF3Q2dqSGVcL0JFKzRHR3VWNm5NWUdUNDY0dEFnOFN0S2JDdVk9IiwibWFjIjoiODEwMjIwOTBiNjBiOWRhMjJlNTliNGY0NzEyNDFjNmJkODIwZmFhMjMyY2IzOThkMzRmMTcyZGZkMjk1ZmUwYiJ9

The Preset method allows you to instantly select from any of the 4 preset specifications for the generator. You can also ad the encrypt modifier to the Preset method aswell for returning an encrypted Preset String.

 RPG::Preset($preset); //Where $preset value can be 1, 2, 3 or 4.
 or
 RPG::Preset($preset,1); // For encrypting the result before returning it.

Details of each preset -

 Preset - 1
 //Character Set = 'ld' //Size = 8  //Dashes = 0 (Dashes Not allowed)
 //Sample Result: cn3hvphy
 Preset - 2
 //Character Set = 'lud' //Size = 8  //Dashes = 0 (Dashes Not allowed)
 //Sample Result: 4sCFwNr8
 Preset - 3
 //Character Set = 'luds' //Size = 12  //Dashes = 0 (Dashes Not allowed)
 //Sample Result: r&$EQx1#USbw
 Preset - 4
 //Character Set = 'luds' //Size = 16  //Dashes = 1 (Dashes Allowed)
 //Sample Result: 1Z2h-F&?C-x$Tg-KEA8
 Preset - 5
 //Character Set = 'luds' //Size = 32  //Dashes = 1 (Dashes Allowed)
 //Sample Result: 1Z2h-F&?C-x$Tg-KEA8-a2E3-E$#e-@#we-12@2

The Decrypt method allows you to decrypt any string/password encrypted by passing the encrypt modifier to the Generate or Preset method. Note : Only passwords encrypted by your laravel app can be decrypted.

 return RPG::Decrypt($encrypted);

Important Note

The passwords are encrypted using the Laravel App Key (which can be found in your .env file). If you change/modify your Laravel App Key, you will no longer be able to decrypt any previously encrypted strings.

Well that should be enough to get you up and running in no time.

Demo Site

You can check out the live demo of this package at [Currently Unavailable]

Changelog

Please see CHANGELOG for more information what has changed recently.

TODO

List of features or additional functionality we are working on (in no particular order) -

Nothing on the TODO List.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email hello@moinuddin.info instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.