not_qwerty123

Library to check password strength and generate random passwords.


License
BSD-3-Clause

Documentation

NotQwerty123

Module Version Hex Docs Total Download License Last Updated

Elixir library to check password strength and generate random passwords.

The NotQwerty123.PasswordStrength module provides checks that the password is not too easy to guess. These checks check that the password is long enough and that it is not similar to any common passwords.

The NotQwerty123.RandomPassword module generates a random password with letters, digits and punctuation characters.

Installation

Make sure you are using Elixir 1.4 or above.

The package can be installed as:

Add :not_qwerty123 to your list of dependencies in mix.exs:

def deps do
  [
    {:not_qwerty123, "~> 2.2"}
  ]
end

If updating a pre-Elixir 1.4 app, make sure you change:

def application do
  [
    applications: [:logger]
  ]
end

to:

def application do
  [
    extra_applications: [:logger]
  ]
end

or add :not_qwerty123 to the applications list.

See Elixir 1.4 release notes for details.

Contributing

There are many ways you can contribute to the development of this library, including:

Donations

First of all, I would like to emphasize that this software is offered free of charge. However, if you find it useful, and you would like to buy me a cup of coffee, you can do so at paypal.

Copyright and License

Copyright (c) 2017 David Whitlock (alovedalongthe@gmail.com)

This software is licensed under the BSD-3-Clause license.