# digestif v0.1.0 - Table of Contents

> Robust password hashing with a small Elixir API

## Pages

- [Digestif](readme.md)

## Modules

- [Digestif](Digestif.md): Password hashing with secure defaults and a small public API.

- Hashing algorithms
  - [Digestif.Argon2id](Digestif.Argon2id.md): Argon2id password hashing backed by the required `argon2_elixir`
dependency.
  - [Digestif.Bcrypt](Digestif.Bcrypt.md): Optional bcrypt password hashing backed by `bcrypt_elixir`, for migrating
existing bcrypt user databases.
  - [Digestif.PBKDF2](Digestif.PBKDF2.md): PBKDF2-HMAC-SHA-256 password hashing backed by `pbkdf2_elixir`.

- Extension
  - [Digestif.Hasher](Digestif.Hasher.md): Behaviour and migration dispatcher for password hashers.

