{"id":13437375,"url":"https://github.com/valpackett/freepass","last_synced_at":"2025-03-19T06:31:05.693Z","repository":{"id":141992677,"uuid":"45502812","full_name":"valpackett/freepass","owner":"valpackett","description":"[DEPRECATED] password manager thing","archived":true,"fork":false,"pushed_at":"2019-01-31T18:21:59.000Z","size":328,"stargazers_count":307,"open_issues_count":2,"forks_count":20,"subscribers_count":14,"default_branch":"master","last_synced_at":"2024-08-05T19:25:12.729Z","etag":null,"topics":["masterpassword","password","password-manager","security","ssh"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/valpackett.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2015-11-03T23:34:08.000Z","updated_at":"2024-04-20T14:27:13.000Z","dependencies_parsed_at":"2024-05-01T14:48:14.504Z","dependency_job_id":null,"html_url":"https://github.com/valpackett/freepass","commit_stats":null,"previous_names":["unrelentingtech/freepass","myfreeweb/freepass"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valpackett%2Ffreepass","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valpackett%2Ffreepass/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valpackett%2Ffreepass/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valpackett%2Ffreepass/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/valpackett","download_url":"https://codeload.github.com/valpackett/freepass/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244370985,"owners_count":20442320,"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":["masterpassword","password","password-manager","security","ssh"],"created_at":"2024-07-31T03:00:56.462Z","updated_at":"2025-03-19T06:31:02.375Z","avatar_url":"https://github.com/valpackett.png","language":"Rust","funding_links":[],"categories":["应用"],"sub_categories":["Utilities"],"readme":"**NOTE: this is pretty much abandoned, I recommend Bitwarden now. There is an `export` command in the CLI that produces CSV suitable for import into Bitwarden.**\n\nNOTE: if you've been using freepass before June 03, 2017: you need to checkout the `serde-migration` git tag, build the CLI, and `mergein` your vault into a new one using that particular version.\n\n# freepass [![unlicense](https://img.shields.io/badge/un-license-green.svg?style=flat)](http://unlicense.org)\n\nThe free password manager for power users.\n\n![X11 screencast gif](https://unrelentingtech.s3.dualstack.eu-west-1.amazonaws.com/freepass-x11.gif)\n\n## What's going on?\n\n- A password manager.\n- Based on the [Master Password algorithm], generates the same passwords as the Master Password apps.\n- But wait, there's more! Why stop at passwords? It generates...\n  - [Ed25519] digital signature keys for...\n    - [OpenSSH]: Freepass adds private keys directly to a running ssh-agent \u0026 exports public keys in OpenSSH format!\n    - [signify]: Freepass signs files \u0026 exports public keys in signify format!\n    - *TODO* [SQRL]\n  - Raw 256-bit keys for symmetric ciphers.\n  - *TODO* [BIP39]-compatible passphrases.\n- Yes, *all* of the above is *derived from your master password and full name*, you can always recover it by entering the same data!\n- The generator settings (site names, counters) are stored in vault files:\n  - Serialized into [CBOR].\n  - Encrypted with NaCl secretbox for each entry + AES for the whole file.\n  - (Keys are derived from the master password like the generated passwords.)\n  - Every time you save a vault file, its size changes randomly. That's a feature. Some random junk is added to make it a bit harder to count how many passwords you have without opening the file.\n- You can also *store* passwords and text in these vault files (for stuff that can't be generated).\n- You can merge two vault files (e.g. from sync conflicts).\n- You can import KeePass 2 (kdbx) files.\n\n## How?\n\n- Freepass is written in the [Rust] programming language and uses [libsodium] as the crypto library.\n- Very modular code, easy to audit.\n  - You can separately check that the `core` library does everything correctly, and that the user interface passes your data to the `core` library, not to an evil server.\n- Some parts were written as completely separate Rust crates:\n  - [secstr](https://github.com/myfreeweb/secstr): secure strings\n  - [interactor](https://github.com/myfreeweb/interactor): user interface things for the `cli` version\n  - [colorhash256](https://github.com/myfreeweb/colorhash256): [Chroma-Hash](https://github.com/mattt/Chroma-Hash/)-style color feedback for password input\n  - [rusterpassword](https://github.com/myfreeweb/rusterpassword): the [Master Password algorithm] implementation\n- Completely free software: public domain / [Unlicense].\n\n[Master Password algorithm]: https://masterpassword.app/masterpassword-algorithm.pdf\n[Ed25519]: http://ed25519.cr.yp.to\n[OpenSSH]: http://www.openssh.com\n[signify]: http://www.tedunangst.com/flak/post/signify\n[SQRL]: https://www.grc.com/sqrl/sqrl.htm\n[BIP39]: https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki\n[CBOR]: http://cbor.io\n[Rust]: https://www.rust-lang.org\n[libsodium]: https://download.libsodium.org/doc/\n[Unlicense]: http://unlicense.org\n\n## Where?\n\nFreepass is (going to be) available on different platforms:\n\n- `cli`: for UNIX-like systems\n- *A desktop GUI and mobile apps will be available in the future.*\n\nEach version has its own README!\n\n## Contributing\n\nBy participating in this project you agree to follow the [Contributor Code of Conduct](http://contributor-covenant.org/version/1/2/0/).\n\n[The list of contributors is available on GitHub](https://github.com/myfreeweb/freepass/graphs/contributors).\n\n## License\n\nThis is free and unencumbered software released into the public domain.\nFor more information, please refer to the `UNLICENSE` file or [unlicense.org](http://unlicense.org).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalpackett%2Ffreepass","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvalpackett%2Ffreepass","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalpackett%2Ffreepass/lists"}