{"id":13725381,"url":"https://github.com/hynek/argon2-cffi","last_synced_at":"2026-04-09T18:40:06.484Z","repository":{"id":37502742,"uuid":"47563574","full_name":"hynek/argon2-cffi","owner":"hynek","description":"Secure Password Hashes for Python","archived":false,"fork":false,"pushed_at":"2025-05-05T17:38:41.000Z","size":629,"stargazers_count":604,"open_issues_count":3,"forks_count":52,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-05-05T18:53:31.782Z","etag":null,"topics":["argon2","cffi","password","password-hash","python","security"],"latest_commit_sha":null,"homepage":"https://argon2-cffi.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hynek.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"hynek","tidelift":"pypi/argon2_cffi"}},"created_at":"2015-12-07T16:12:48.000Z","updated_at":"2025-05-05T17:38:43.000Z","dependencies_parsed_at":"2023-02-19T15:45:21.913Z","dependency_job_id":"f42b397b-f579-40c8-b04b-b88e1e70d4a6","html_url":"https://github.com/hynek/argon2-cffi","commit_stats":{"total_commits":536,"total_committers":19,"mean_commits":"28.210526315789473","dds":0.2947761194029851,"last_synced_commit":"da9e29b6a24005af68a5490fa8e57fbee707b06b"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hynek%2Fargon2-cffi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hynek%2Fargon2-cffi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hynek%2Fargon2-cffi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hynek%2Fargon2-cffi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hynek","download_url":"https://codeload.github.com/hynek/argon2-cffi/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254010813,"owners_count":21998995,"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":["argon2","cffi","password","password-hash","python","security"],"created_at":"2024-08-03T01:02:21.194Z","updated_at":"2025-12-11T21:04:27.911Z","avatar_url":"https://github.com/hynek.png","language":"Python","funding_links":["https://github.com/sponsors/hynek","https://tidelift.com/funding/github/pypi/argon2_cffi","https://tidelift.com/?utm_source=lifter\u0026utm_medium=referral\u0026utm_campaign=hynek"],"categories":["Python"],"sub_categories":[],"readme":"# *argon2-cffi*: Argon2 for Python\n\n[![Documentation](https://img.shields.io/badge/Docs-Read%20The%20Docs-black)](https://argon2-cffi.readthedocs.io/)\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/6671/badge)](https://bestpractices.coreinfrastructure.org/projects/6671)\n[![PyPI version](https://img.shields.io/pypi/v/argon2-cffi)](https://pypi.org/project/argon2-cffi/)\n[![Downloads / Month](https://static.pepy.tech/personalized-badge/argon2-cffi?period=month\u0026units=international_system\u0026left_color=grey\u0026right_color=blue\u0026left_text=Downloads%20/%20Month)](https://pepy.tech/project/argon2-cffi)\n\n\u003c!-- begin short --\u003e\n\u003c!-- begin pypi --\u003e\n\n[Argon2](https://github.com/p-h-c/phc-winner-argon2) won the [Password Hashing Competition](https://www.password-hashing.net/) and *argon2-cffi* is the simplest way to use it in Python:\n\n```pycon\n\u003e\u003e\u003e from argon2 import PasswordHasher\n\u003e\u003e\u003e ph = PasswordHasher()\n\u003e\u003e\u003e hash = ph.hash(\"correct horse battery staple\")\n\u003e\u003e\u003e hash  # doctest: +SKIP\n'$argon2id$v=19$m=65536,t=3,p=4$MIIRqgvgQbgj220jfp0MPA$YfwJSVjtjSU0zzV/P3S9nnQ/USre2wvJMjfCIjrTQbg'\n\u003e\u003e\u003e ph.verify(hash, \"correct horse battery staple\")\nTrue\n\u003e\u003e\u003e ph.check_needs_rehash(hash)\nFalse\n\u003e\u003e\u003e ph.verify(hash, \"Tr0ub4dor\u00263\")\nTraceback (most recent call last):\n  ...\nargon2.exceptions.VerifyMismatchError: The password does not match the supplied hash\n\n```\n\u003c!-- end short --\u003e\n\n## Project Links\n\n- [**PyPI**](https://pypi.org/project/argon2-cffi/)\n- [**GitHub**](https://github.com/hynek/argon2-cffi)\n- [**Documentation**](https://argon2-cffi.readthedocs.io/)\n- [**Changelog**](https://github.com/hynek/argon2-cffi/blob/main/CHANGELOG.md)\n- [**Funding**](https://hynek.me/say-thanks/)\n- The low-level Argon2 CFFI bindings are maintained in the separate [*argon2-cffi-bindings*](https://github.com/hynek/argon2-cffi-bindings) project.\n\n\u003c!-- end pypi --\u003e\n\n## Credits\n\n*argon2-cffi* is maintained by [Hynek Schlawack](https://hynek.me/).\n\nThe development is kindly supported by my employer [Variomedia AG](https://www.variomedia.de/), *argon2-cffi* [Tidelift subscribers](https://tidelift.com/?utm_source=lifter\u0026utm_medium=referral\u0026utm_campaign=hynek), and my amazing [GitHub Sponsors](https://github.com/sponsors/hynek).\n\n\n## *argon2-cffi* for Enterprise\n\nAvailable as part of the [Tidelift Subscription](https://tidelift.com/?utm_source=lifter\u0026utm_medium=referral\u0026utm_campaign=hynek).\n\nThe maintainers of *argon2-cffi* and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open-source packages you use to build your applications.\nSave time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhynek%2Fargon2-cffi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhynek%2Fargon2-cffi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhynek%2Fargon2-cffi/lists"}