{"id":13438906,"url":"https://github.com/conradkleinespel/rooster","last_synced_at":"2026-04-02T01:43:23.094Z","repository":{"id":26758767,"uuid":"30216643","full_name":"conradkleinespel/rooster","owner":"conradkleinespel","description":"A simple password manager for Windows, macOS and Linux.","archived":false,"fork":false,"pushed_at":"2023-12-05T21:01:58.000Z","size":13417,"stargazers_count":150,"open_issues_count":0,"forks_count":23,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-08-05T19:25:19.223Z","etag":null,"topics":["password","password-manager","password-store","password-vault","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/conradkleinespel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"liberapay":"conradkleinespel","github":"conradkleinespel"}},"created_at":"2015-02-03T00:33:13.000Z","updated_at":"2024-08-02T03:10:36.000Z","dependencies_parsed_at":"2023-11-14T22:25:38.693Z","dependency_job_id":"b9fcd5db-171b-4ff1-8f93-f5d586e3c052","html_url":"https://github.com/conradkleinespel/rooster","commit_stats":{"total_commits":320,"total_committers":12,"mean_commits":"26.666666666666668","dds":0.06874999999999998,"last_synced_commit":"47d8a0a55046500c879c32bcd163e1c5857fa763"},"previous_names":["conradkdotcom/rooster"],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conradkleinespel%2Frooster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conradkleinespel%2Frooster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conradkleinespel%2Frooster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/conradkleinespel%2Frooster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/conradkleinespel","download_url":"https://codeload.github.com/conradkleinespel/rooster/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244565733,"owners_count":20473335,"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":["password","password-manager","password-store","password-vault","rust"],"created_at":"2024-07-31T03:01:09.518Z","updated_at":"2025-12-26T01:04:08.483Z","avatar_url":"https://github.com/conradkleinespel.png","language":"Rust","funding_links":["https://liberapay.com/conradkleinespel","https://github.com/sponsors/conradkleinespel","https://liberapay.com/conradkleinespel/"],"categories":["Libraries","库 Libraries","Rust","rust"],"sub_categories":["Cryptography","密码学 Cryptography"],"readme":"# Rooster\n\nRooster is a simple password manager. It helps you save username/password combinations \nthrough a friendly command-line interface. Rooster runs on Windows, MacOS and Linux.\n\n![Rooster logo and headline](rooster.png)\n\nRooster is made available free of charge. You can support its development through [Liberapay](https://liberapay.com/conradkleinespel/) 💪\n\n## Features\n\nRooster has the following goals:\n\n- it is easy to maintain so that it **never becomes unmaintained**, it has existed since 2015;\n- it **works completely offline** by saving your password in a single local file;\n- it stores **username/password combinations, nothing more, nothing less**;\n- it can **import/export** passwords from and to 1Password/JSON/CSV;\n- it can run on a **wide range of operating systems**.\n\nRooster protects your passwords with state-of-the-art cryptography algorithms:\n\n- scrypt for key derivation (`n = 2^12, r = 8, p = 1` by default, customizable)\n- aes-256-cbc for encryption\n- hmac-sha512 for authentication\n\n## Installation\n\nTo install Rooster, run the following commands as `root`.\n\nOn **Arch Linux**, install [Rooster from AUR](https://aur.archlinux.org/packages/rooster).\n\nOn **Void Linux**, install [Rooster from XBPS](https://github.com/void-linux/void-packages/blob/master/srcpkgs/rooster/template).\n\nOn **Fedora** and **CentOS**:\n\n```shell\ndnf update -y\ndnf install -y curl gcc unzip pkgconfig libX11-devel libXmu-devel python3\ncurl https://sh.rustup.rs -sSf | sh -s -- -y\nsource $HOME/.cargo/env\ncargo install --all-features --root /usr rooster\n```\n\nOn **Debian**:\n\n```shell\napt-get update -y\napt-get install -y curl gcc unzip pkg-config libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libx11-dev libxmu-dev python3 libssl-dev xsel\ncurl https://sh.rustup.rs -sSf | sh -s -- -y\nsource $HOME/.cargo/env\ncargo install --all-features --root /usr rooster\n```\n\nOn **Ubuntu 16.04/18.04**:\n\n```shell\napt update -y\napt install -y curl unzip pkg-config libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libx11-dev libxmu-dev python3 libssl-dev xsel\ncurl https://sh.rustup.rs -sSf | sh -s -- -y\nsource $HOME/.cargo/env\ncargo install --all-features --root /usr rooster\n```\n\nOn **MacOS**:\n\n```shell\nbrew install curl\ncurl https://sh.rustup.rs -sSf | sh -s -- -y\ncargo install --all-features rooster\n```\n\nOn **Windows**, [install Rust](https://www.rust-lang.org/tools/install) and then run:\n```shell\ncargo install --all-features rooster\n```\n\nIf you use **Wayland** instead of X11, install [wl-clipboard](https://github.com/bugaevc/wl-clipboard) and make sure you have the following\nenvironment variable set: `XDG_SESSION_TYPE=wayland`.\n\nFor other distributions, the various Docker files can help you find which dependencies you need.\n\n## Usage\n\nOnce you have installed Rooster, create a new password file:\n\n```shell\nrooster init\n```\n\nOnce setup is finished, see `rooster --help` for what you can do.\n\n## License\n\nThe source code is released under the Apache 2.0 license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconradkleinespel%2Frooster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconradkleinespel%2Frooster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconradkleinespel%2Frooster/lists"}