Objective: Create a password generator that can create a secure password.
It should be possible to generate a password by calling a method—you may choose the method signature for this. The method should return a string containing the new password.
This generation method should accept the following options which define the requirements of returned passwords:
length
— (integer) length of the generated passworduppercase
— (boolean) include one or more uppercaseA-Z
characterslowercase
— (boolean) include one or more lowercasea-z
charactersnumber
— (integer) exact number of numeric0-9
charactersspecial
— (integer) exact number of special@%!?*^&
characters
The function should produce an error in the event of invalid options.
External libraries are allowed for testing purposes. The actual password generation code however should be implemented in your code, and not simply call out to an external library that generates passwords for you.
The code should be packaged as a library/module which could be included into other libraries and applications.
Tests should be included to verify that the code works as intended.
Documentation should be included to demonstrate how to use the library. A well written README is more than sufficient. Please add some notes about how you approached the problem, and any difficulties or issues you encountered during development.
Push the library into a private repository on GitHub and invite @js1300 and @jpswade with read access.