Minimalist Strong Password Generator - Password Builder

File Size: 2.99 KB
Views Total: 375
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Minimalist Strong Password Generator - Password Builder

A super tiny (less than 1kb) jQuery-based password generator for generating strong and secure passwords of specified length.

See Also:

How to use it:

1. Add jQuery library and the password-builder.jquery.js to the page.

<script src="/path/to/cdn/jquery.slim.min.js"></script>
<script src="/path/to/password-builder.jquery.js"></script>

2. Generate a random 6-digit password.

<div class="output">
  
</div>
$(function(){
  $(".output).buildPassword(6);
});

3. Customize the characters used to generate the password.

var params = [
    "1234567890", 
    "abcdefghijklmnopqrstuvwxyz", 
    "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 
    "!\"§$%&/()=]["
];

This awesome jQuery plugin is developed by cryptncyrix. For more Advanced Usages, please check the demo page or visit the official website.