defmodule Bcrypt do @moduledoc """ Elixir wrapper for the Bcrypt password hashing function. For a lower-level API, see `Bcrypt.Base`. ## Configuration The following parameter can be set in the config file: * `:log_rounds` - the computational cost as number of log rounds * the default is `12` (2^12 rounds) If you are hashing passwords in your tests, it can be useful to add the following to the `config/test.exs` file: # Note: Do not use this value in production config :bcrypt_elixir, log_rounds: 4 ## Bcrypt Bcrypt is a key derivation function for passwords designed by Niels Provos and David Mazières. Bcrypt is an adaptive function, which means that it can be configured to remain slow and resistant to brute-force attacks even as computational power increases. ## Bcrypt versions This bcrypt implementation is based on the latest OpenBSD version, which fixed a small issue that affected some passwords longer than 72 characters. By default, it produces hashes with the prefix `$2b$`, and it can check hashes with either the `$2b$` prefix or the older `$2a$` prefix. It is also possible to generate hashes with the `$2a$` prefix by running the following command: Bcrypt.Base.hash_password("hard to guess", Bcrypt.Base.gen_salt(12, true)) This option should only be used if you need to generate hashes that are then checked by older libraries. The `$2y$` prefix is not supported. For advice on how to use hashes with the `$2y$` prefix, see [this issue](https://github.com/riverrun/comeonin/issues/103). Hash the password with a salt which is randomly generated. """ use Comeonin alias Bcrypt.Base @doc """ Hashes a password with a randomly generated salt. ## Option * `:log_rounds` - the computational cost as number of log rounds * the default is 12 (2^12 rounds) * this can be used to override the value set in the config ## Examples The following examples show how to hash a password with a randomly-generated salt and then verify a password: iex> hash = Bcrypt.hash_pwd_salt("password") ...> Bcrypt.verify_pass("password", hash) true iex> hash = Bcrypt.hash_pwd_salt("password") ...> Bcrypt.verify_pass("incorrect", hash) false """ @impl true def hash_pwd_salt(password, opts \\ []) do Base.hash_password( password, Base.gen_salt( Keyword.get(opts, :log_rounds, Application.get_env(:bcrypt_elixir, :log_rounds, 12)), Keyword.get(opts, :legacy, false) ) ) end @doc """ Verifies a password by hashing the password and comparing the hashed value with a stored hash. See the documentation for `hash_pwd_salt/2` for examples of using this function. """ @impl true def verify_pass(password, stored_hash) do Base.checkpass_nif(:binary.bin_to_list(password), :binary.bin_to_list(stored_hash)) |> handle_verify end defp handle_verify(0), do: true defp handle_verify(_), do: false end