{"id":49451012,"url":"https://github.com/callmesalmon/locksmith","last_synced_at":"2026-04-30T02:39:34.342Z","repository":{"id":338524838,"uuid":"1157984846","full_name":"callmesalmon/locksmith","owner":"callmesalmon","description":"A simple CLI password manager written in C.","archived":false,"fork":false,"pushed_at":"2026-03-09T17:11:43.000Z","size":522,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-09T21:43:00.190Z","etag":null,"topics":["c","encryption-decryption","password-manager"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/callmesalmon.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2026-02-14T16:05:40.000Z","updated_at":"2026-03-09T17:11:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/callmesalmon/locksmith","commit_stats":null,"previous_names":["callmesalmon/locksmith"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/callmesalmon/locksmith","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callmesalmon%2Flocksmith","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callmesalmon%2Flocksmith/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callmesalmon%2Flocksmith/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callmesalmon%2Flocksmith/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/callmesalmon","download_url":"https://codeload.github.com/callmesalmon/locksmith/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/callmesalmon%2Flocksmith/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32452745,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["c","encryption-decryption","password-manager"],"created_at":"2026-04-30T02:39:32.961Z","updated_at":"2026-04-30T02:39:34.337Z","avatar_url":"https://github.com/callmesalmon.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# locksmith\n``locksmith`` is a password manager for Unix-like systems written in C. It aims at being simple and fast with\nno unnessecary bloat.\n\n[![Locksmith image](https://github.com/callmesalmon/locksmith/raw/main/screenshot.png)](https://github.com/callmesalmon/locksmith)  \nLocksmith in action! _(screenshot may be outdated)_\n\n\u003e [!WARNING]\n\u003e THIS SOFTWARE CAN AND WILL NOT GUARANTEE TOTAL SAFETY OF STORED INFORMATION,\n\u003e AND ITS CREATORS WILL NOT BE HELD LIABLE FOR ANY SECURITY BREACHES CAUSED BY\n\u003e THIS SOFTWARE.\n\n## Features\nLocksmith comes with many features, such as:\n- Password encryption\n- Password generation\n- (Possibly broken) Password safety checking\n- Master password authentication (w/ hashing)\n- Atleast a somewhat functional implementation of password backups\n- A full \"locksmith shell\" to handle passwords in.\n\n## Requirements\nIf you want to build locksmith from source, you need:\n- [cc/gcc](https://gcc.gnu.org/) (alternatively any other C compiler that compiles my code, but gcc is the\nonly one on which I can guarantee that it compiles)\n- [make](https://www.gnu.org/software/make/)\n- [libsodium](https://github.com/jedisct1/libsodium)\n### Optional requirements\nAdditionally, if you want the best experience, you need:\n- A terminal supporting ANSI color escape codes (locksmith uses these for colored I/O)\n- A monospaced font (a lot will look kinda strange otherwise)\n\n## Install\nLocksmith will not compile on spyware such as Windows.\n```sh\ngit clone https://github.com/callmesalmon/locksmith\ncd locksmith\n\n## NOTE: You may alternatively run\n## ``sudo make install`` to install binary\n## to /usr/local/bin\nmake\nsudo ./install_man.sh # OPTIONAL: this builds the locksmith manpage\n```\n\n## Uninstall\n```sh\n./clean.sh  ## NOTE: Depending on your write access to certain directories,\n            ## you may need to run ``sudo ./clean.sh`` instead\n```\n\n## Project layout\nThe source code of the project is split into different files, with different\npurposes. See:\n\n```\nsrc\n├── auth.c      Master password authentication\n├── auth.h      Master password authentication\n├── cli.c       Interface/command shell\n├── cli.h       Interface/command shell\n├── cli_msg.c   Interface Error/Warning/Info messages\n├── cli_msg.h   Interface Error/Warning/Info messages\n├── colors.h    Colored I/O\n├── commons.c   Common functions, independent of the project\n├── commons.h   Common functions, independent of the project\n├── crypto.c    Cryptography\n├── crypto.h    Cryptography\n├── main.c      Entry point\n├── password.c  Encrypting/Decryption of passwords\n└── password.h  Encrypting/Decryption of passwords\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallmesalmon%2Flocksmith","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcallmesalmon%2Flocksmith","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcallmesalmon%2Flocksmith/lists"}