{"id":34090475,"url":"https://github.com/notypecheck/passlib","last_synced_at":"2026-04-08T19:30:58.904Z","repository":{"id":256456101,"uuid":"855355424","full_name":"notypecheck/passlib","owner":"notypecheck","description":"Passlib fork","archived":false,"fork":false,"pushed_at":"2025-10-27T15:00:05.000Z","size":37207,"stargazers_count":31,"open_issues_count":5,"forks_count":4,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-03-12T07:26:28.875Z","etag":null,"topics":["hashing","password-hashing","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/notypecheck.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-10T18:23:41.000Z","updated_at":"2026-02-20T21:13:43.000Z","dependencies_parsed_at":"2024-10-24T20:44:17.771Z","dependency_job_id":"e6858e90-5bf4-464f-a220-f99689a77069","html_url":"https://github.com/notypecheck/passlib","commit_stats":null,"previous_names":["thirvondukr/passlib","notypecheck/passlib"],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/notypecheck/passlib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Fpasslib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Fpasslib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Fpasslib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Fpasslib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/notypecheck","download_url":"https://codeload.github.com/notypecheck/passlib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notypecheck%2Fpasslib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31571599,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["hashing","password-hashing","python"],"created_at":"2025-12-14T14:20:17.885Z","updated_at":"2026-04-08T19:30:58.897Z","avatar_url":"https://github.com/notypecheck.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Passlib\n\n[![image](https://img.shields.io/pypi/v/libpass.svg)](https://pypi.org/pypi/libpass)\n[![image](https://img.shields.io/pypi/pyversions/libpass.svg)](https://pypi.org/project/libpass)\n\nThis is a fork of https://foss.heptapod.net/python-libs/passlib\n\nPasslib is a password hashing library for Python 3, which provides\ncross-platform implementations of over 30 password hashing algorithms, as well\nas a framework for managing existing password hashes. It's designed to be useful\nfor a wide range of tasks, from verifying a hash found in /etc/shadow, to\nproviding full-strength password hashing for multi-user application.\n\n- See the [documentation](https://passlib.readthedocs.io)\n  for details, installation instructions, and examples.\n- See the [changelog](https://github.com/notypecheck/passlib/blob/main/CHANGELOG.md)\n  for a description of what's new in Passlib.\n- Visit [PyPI](https://pypi.org/project/libpass) for the latest stable release.\n\n\n\n## Installation\n```shell\npip install libpass\n```\n\n## Usage\nA quick example of using passlib to integrate into a new application:\n```python\nfrom passlib.context import CryptContext\n\ncontext = CryptContext(\n    schemes=[\"sha512_crypt\"]\n)\n\nhash = context.hash(\"password\")\n# $6$rounds=656000$jFKvvPmUywlqjSs.$iNeK/OWVry7KThNyzR01xzqZzgk/VA75.sR4yXXblsPAoEugtdO3zn/O4VEG3Izp8l5.//lMGpuRCOqvKknHo1\n\n# Verifying a password\nis_valid = context.verify(\"password\", hash) # True\n\n```\nFor more details and an extended set of examples, see the full documentation\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnotypecheck%2Fpasslib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnotypecheck%2Fpasslib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnotypecheck%2Fpasslib/lists"}