{"id":16655397,"url":"https://github.com/riverrun/pbkdf2_elixir","last_synced_at":"2025-04-09T15:07:28.460Z","repository":{"id":44911998,"uuid":"94955888","full_name":"riverrun/pbkdf2_elixir","owner":"riverrun","description":"Pbkdf2 password hashing for Elixir","archived":false,"fork":false,"pushed_at":"2025-02-05T00:31:22.000Z","size":99,"stargazers_count":53,"open_issues_count":2,"forks_count":12,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T15:07:22.567Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/riverrun.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-21T02:46:14.000Z","updated_at":"2025-03-28T11:22:24.000Z","dependencies_parsed_at":"2024-06-18T18:40:25.012Z","dependency_job_id":"1b23d903-4894-4e70-a57e-b57810ace03e","html_url":"https://github.com/riverrun/pbkdf2_elixir","commit_stats":{"total_commits":51,"total_committers":3,"mean_commits":17.0,"dds":"0.039215686274509776","last_synced_commit":"a5546c65bca292adbc3720a59316c03b8784ce24"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverrun%2Fpbkdf2_elixir","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverrun%2Fpbkdf2_elixir/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverrun%2Fpbkdf2_elixir/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverrun%2Fpbkdf2_elixir/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/riverrun","download_url":"https://codeload.github.com/riverrun/pbkdf2_elixir/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248055284,"owners_count":21040157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-12T09:52:51.796Z","updated_at":"2025-04-09T15:07:28.433Z","avatar_url":"https://github.com/riverrun.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pbkdf2\n\n[![Build Status](https://travis-ci.com/riverrun/pbkdf2_elixir.svg?branch=master)](https://travis-ci.com/riverrun/pbkdf2_elixir)\n[![Module Version](https://img.shields.io/hexpm/v/pbkdf2_elixir.svg)](https://hex.pm/packages/pbkdf2_elixir)\n[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/pbkdf2_elixir/)\n[![Total Download](https://img.shields.io/hexpm/dt/pbkdf2_elixir.svg)](https://hex.pm/packages/pbkdf2_elixir)\n[![License](https://img.shields.io/hexpm/l/pbkdf2_elixir.svg)](https://github.com/riverrun/pbkdf2_elixir/blob/master/LICENSE)\n[![Last Updated](https://img.shields.io/github/last-commit/riverrun/pbkdf2_elixir.svg)](https://github.com/riverrun/pbkdf2_elixir/commits/master)\n[![Join the chat at https://gitter.im/comeonin/Lobby](https://badges.gitter.im/comeonin/Lobby.svg)](https://gitter.im/comeonin/Lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\nPbkdf2 password hashing library for Elixir.\n\nPbkdf2 is a well-tested password-based key derivation function that can be\nconfigured to remain slow and resistant to brute-force attacks even as\ncomputational power increases.\n\n## Comparison with the Plug.Crypto version of Pbkdf2\n\nIf you want the Pbkdf2 output to be in binary (raw) or hex format, you might\nfind [Plug.Crypto.KeyGenerator](https://hexdocs.pm/plug_crypto/Plug.Crypto.KeyGenerator.html)\nmore convenient.\n\n## Installation\n\n1.  Add `:pbkdf2_elixir` to the `deps` section of your `mix.exs` file:\n\n    ```elixir\n    def deps do\n      [\n        {:pbkdf2_elixir, \"~\u003e 2.0\"}\n      ]\n    end\n    ```\n\n2.  Optional: during tests (and tests only), you may want to reduce the number of rounds\nso it does not slow down your test suite. If you have a `config/test.exs`, you should\nadd:\n\n    ```elixir\n    config :pbkdf2_elixir, :rounds, 1\n    ```\n\n## Comeonin wiki\n\nSee the [Comeonin wiki](https://github.com/riverrun/comeonin/wiki) for more\ninformation on the following topics:\n\n* [Algorithms](https://github.com/riverrun/comeonin/wiki/Choosing-the-password-hashing-algorithm)\n* [Requirements](https://github.com/riverrun/comeonin/wiki/Requirements)\n* [Deployment](https://github.com/riverrun/comeonin/wiki/Deployment)\n  * including information about using Docker\n* [References](https://github.com/riverrun/comeonin/wiki/References)\n\n## Contributing\n\nThere are many ways you can contribute to the development of this library, including:\n\n* Reporting issues\n* Improving documentation\n* Sharing your experiences with others\n\n## Copyright and License\n\nCopyright (c) 2014-2021 David Whitlock (alovedalongthe@gmail.com)\n\nThis software is licensed under [the BSD-3-Clause license](./LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friverrun%2Fpbkdf2_elixir","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Friverrun%2Fpbkdf2_elixir","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friverrun%2Fpbkdf2_elixir/lists"}