{"id":16655385,"url":"https://github.com/riverrun/argon2_elixir","last_synced_at":"2025-10-18T20:54:04.898Z","repository":{"id":44879306,"uuid":"71316351","full_name":"riverrun/argon2_elixir","owner":"riverrun","description":"Elixir wrapper for the Argon2 password hashing algorithm","archived":false,"fork":false,"pushed_at":"2025-04-27T13:20:26.000Z","size":162,"stargazers_count":240,"open_issues_count":0,"forks_count":37,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-27T13:34:54.412Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","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,"zenodo":null}},"created_at":"2016-10-19T03:43:39.000Z","updated_at":"2025-04-27T12:38:53.000Z","dependencies_parsed_at":"2025-02-28T10:07:09.517Z","dependency_job_id":"89e5e147-7ef3-42c0-b6e2-f0e66c02a4df","html_url":"https://github.com/riverrun/argon2_elixir","commit_stats":{"total_commits":115,"total_committers":9,"mean_commits":"12.777777777777779","dds":0.08695652173913049,"last_synced_commit":"e47d270e6e2131c5b50ac1a69a38c4a4b7e3baeb"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverrun%2Fargon2_elixir","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverrun%2Fargon2_elixir/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverrun%2Fargon2_elixir/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverrun%2Fargon2_elixir/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/riverrun","download_url":"https://codeload.github.com/riverrun/argon2_elixir/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254198452,"owners_count":22030964,"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:49.225Z","updated_at":"2025-10-18T20:53:59.851Z","avatar_url":"https://github.com/riverrun.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Argon2\n\n[![Build Status](https://travis-ci.com/riverrun/argon2_elixir.svg?branch=master)](https://travis-ci.com/riverrun/argon2_elixir)\n[![Hex Version](https://img.shields.io/hexpm/v/argon2_elixir.svg)](https://hex.pm/packages/argon2_elixir)\n[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/argon2_elixir/)\n[![Total Download](https://img.shields.io/hexpm/dt/argon2_elixir.svg)](https://hex.pm/packages/argon2_elixir)\n[![License](https://img.shields.io/hexpm/l/argon2_elixir.svg)](https://github.com/riverrun/argon2_elixir/blob/master/LICENSE)\n[![Last Updated](https://img.shields.io/github/last-commit/riverrun/argon2_elixir.svg)](https://github.com/riverrun/argon2_elixir/commits/master)\n\n\nArgon2 password hashing library for Elixir.\n\n[Argon2](https://github.com/P-H-C/phc-winner-argon2) is the official winner\nof the [Password Hashing Competition](https://password-hashing.net/),\na several year project to identify a successor to Bcrypt / Pbkdf2 / Scrypt\npassword hashing methods.\n\n## Installation\n\n\n1.  Add `:argon2_elixir` to your list of dependencies in `mix.exs`:\n\n    ```elixir\n    def deps do\n      [\n        {:argon2_elixir, \"~\u003e 4.0\"}\n      ]\n    end\n    ```\n\n2.  Optional: during tests (and tests only), you may want to speed up the tests. If you have a `config/test.exs`, you can add:\n\n    ```elixir\n    config :argon2_elixir,\n      t_cost: 1,\n      m_cost: 8\n    ```\n\n## Configuration\n\nConfigure `argon2_elixir` - see the documentation for\n[`Argon2.Stats`](https://hexdocs.pm/argon2_elixir/Argon2.Stats.html) for more details\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### Development\n\n```bash\n$ git clone https://github.com/riverrun/argon2_elixir\n$ git submodule update --init --recursive\n$ mix do deps.get, compile\n$ mix test\n```\n\n### Documentation\n\nhttp://hexdocs.pm/argon2_elixir\n\n## Copyright and License\n\nCopyright (c) 2016 David Whitlock\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friverrun%2Fargon2_elixir","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Friverrun%2Fargon2_elixir","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friverrun%2Fargon2_elixir/lists"}