erlPass

buildcodecovLicense

An OTP library to generate passwords.

Installation

Rebar3

erlPass is built using rebar3, if this library is used with rebar3 simply put it in your rebar.config file:

{deps, [
    erlPass
    ]}.

Other

If you don't use rebar3 it's possibly to get the latest version from github.

Build

$ rebar3 compile

Test

Simply run eunit with rebar3

$ rebar3 eunit

Usage

Simple to use, just call the generate/2 function with the

desired attributes in list.

Example

1> erlPass:generate(10, [upper,number,symbol]).
"4A0LE6\\_W@"
2>