Crates.io | rooster |
lib.rs | rooster |
version | 2.13.0 |
source | src |
created_at | 2016-01-11 15:34:21.739798 |
updated_at | 2023-11-26 13:20:30.072048 |
description | A simple password manager |
homepage | https://github.com/conradkleinespel/rooster |
repository | https://github.com/conradkleinespel/rooster |
max_upload_size | |
id | 3870 |
size | 337,094 |
Rooster is a simple password manager. It helps you save username/password combinations through a friendly command-line interface. Rooster runs on Windows, MacOS and Linux.
Rooster is made available free of charge. You can support its development through Liberapay 💪
Rooster has the following goals:
Rooster protects your passwords with state-of-the-art cryptography algorithms:
n = 2^12, r = 8, p = 1
by default, customizable)To install Rooster, run the following commands as root
.
On Arch Linux, install Rooster from AUR.
On Void Linux, install Rooster from XBPS.
On Fedora and CentOS:
dnf update -y
dnf install -y curl gcc unzip pkgconfig libX11-devel libXmu-devel python3
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
cargo install --all-features --root /usr rooster
On Debian:
apt-get update -y
apt-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
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
cargo install --all-features --root /usr rooster
On Ubuntu 16.04/18.04:
apt update -y
apt install -y curl unzip pkg-config libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libx11-dev libxmu-dev python3 libssl-dev xsel
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
cargo install --all-features --root /usr rooster
On MacOS:
brew install curl
curl https://sh.rustup.rs -sSf | sh -s -- -y
cargo install --all-features rooster
On Windows, install Rust and then run:
cargo install --all-features rooster
If you use Wayland instead of X11, install wl-clipboard and make sure you have the following
environment variable set: XDG_SESSION_TYPE=wayland
.
For other distributions, the various Docker files can help you find which dependencies you need.
Once you have installed Rooster, create a new password file:
rooster init
Once setup is finished, see rooster --help
for what you can do.
The source code is released under the Apache 2.0 license.