Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 327 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 327 Bytes

crypto

Password Generator Library for JavaScript

  • Provides an interface for generating secure password in JavaScript
  • Uses an Uint32Array and generates random values by using getRandomValues() of window.crypto.
  • The generation of the password is done according to http://stackoverflow.com/a/13694869/3233827