Comeonin Build Status Hex.pm Version Join the chat at https://gitter.im/comeonin/Lobby

Password hashing library for Elixir.

This library is intended to make it very straightforward for developers to check users' passwords in as secure a manner as possible.

Comeonin supports Argon2, Bcrypt and Pbkdf2 (sha512 and sha256).

Features

Changes in version 4

There have been a few changes in version 4. When upgrading, you will need to make the following changes:

Installation

  1. Decide which algorithm to use (see Choosing an algorithm for more information):

If you choose Argon2 or Bcrypt, you will need to have a C compiler installed.

Argon2 and Bcrypt version 1.0 also require dirty scheduler support, which is provided by default in Erlang 20. Bcrypt version 0.12 can be used with older versions of Erlang.

You do not need to have a C compiler installed to use Pbkdf2.

  1. Add comeonin and the library (algorithm) you choose to the deps section of your mix.exs file, as in the following example.
defp deps do
[
{:comeonin, "~> 4.0"},
{:argon2_elixir, "~> 1.2"},
]
end
  1. Optional: during tests (and tests only), you may want to reduce the number of rounds so it does not slow down your test suite. If you have a config/test.exs, you should add (depending on which algorithm you are using):
config :argon2_elixir,
t_cost: 2,
m_cost: 12
config :bcrypt_elixir, :log_rounds, 4
config :pbkdf2_elixir, :rounds, 1

NB: do not use the above values in production.

If you have any problems building Comeonin, see the Comeonin wiki.

Use

Each module (Comeonin.Argon2, Comeonin.Bcrypt and Comeonin.Pbkdf2) offers the following functions (the first two are new to version 4):

* add_hash - hash a password and return it in a map with the password set to nil
* check_pass - check a password by comparing it with the stored hash, which is in a map
* hashpwsalt - hash a password, using a randomly generated salt
* checkpw - check a password by comparing it with the stored hash
* dummy_checkpw - perform a dummy check to make user enumeration more difficult
* report - print out a report of the hashing algorithm, to help with configuration

For a lower-level API, you could also use the hashing dependency directly, without installing Comeonin.

Documentation

http://hexdocs.pm/comeonin

License

BSD. For full details, please read the LICENSE file.