Crypt: A Password Manager

A simple command-line password manager, written in Rust + SQLite3. This tool allows you to manage accounts and generate random passwords containing ASCII letters, numbers, and punctuation (min. 8 characters) or XKCD-like passphrases (min. 3 words).


NOTE: This crate is not ready for use in production yet. There are many items still left to implement prior to a production-ready release - see the TODO section for more details.


Table of Contents

Installation

(Back to top)

To install the package from Crates.io, run the following command:

bash cargo install crypt

Visit the Crypt page for more information.

Usage

(Back to top)

All arguments can be passed to the app with the following template:

bash crypt ARGUMENT [VALUES]

Arguments

Summary

Argument (Short) Argument (Long) Explanation
-h --help Print the welcome message
-n --new Create a new account
-l --list List all saved accounts
-e --edit [UUID] [FIELD] Edit a saved account
-d --delete [UUID] Delete a saved account
-p --purge Purge all accounts and delete the vault
-ex --encrypt Encrypt the vault database
-dx --decrypt Decrypt the vault database

Contributing

(Back to top)

Any and all contributions are welcome. Feel free to fork the project, add features, and submit a pull request.

TODO:

Development

Setup

bash git clone https://github.com/christian-cleberg/crypt

bash cd crypt

Local Testing

If you've made changes to the code and would like to test them, use the following commands.

bash cargo build --release

bash ./target/release/crypt --help

Building & Publishing

If you are ready to push your changes to crates.io, use the commands below.

bash cargo --build release

bash cargo login [API_TOKEN]

bash cargo publish --dry-run

bash cargo publish