Go to file
StNicolay 3afc9d8f19
Added .vscode to .gitignore
2024-05-18 13:10:28 +03:00
.sqlx Added support for multiple languages 2024-04-16 16:02:48 +03:00
database Added docker files for the bot and the database 2023-05-07 16:34:41 +03:00
locales Updated altering accounts to handle errors 2024-04-26 18:22:35 +03:00
migrations Made cryptography and entity modules 2024-05-05 18:38:21 +03:00
src Removed inlines 2024-05-13 13:58:56 +03:00
.dockerignore Added docker files for the bot and the database 2023-05-07 16:34:41 +03:00
.gitignore Added .vscode to .gitignore 2024-05-18 13:10:28 +03:00
Cargo.lock Updated deps 2024-05-18 12:23:51 +03:00
Cargo.toml Updated deps 2024-05-18 12:23:51 +03:00
Dockerfile Imporved logging and added debug information to get backtraces when errors are encountered 2024-04-23 18:19:35 +03:00
LICENSE Fixed Cipher::decrypt and added tests for account encryption 2024-01-27 12:45:40 +03:00
README.md Updated README.md 2024-04-23 18:42:55 +03:00
build.rs Made cryptography and entity modules 2024-05-05 18:38:21 +03:00
compose.yaml Removed version from compose.yaml 2024-04-21 11:28:12 +03:00

README.md

Pass Manager

Telegram bot, written in Rust, that manages your passwords

Usage

This bot has to be self hosted. No official instance exists. To host this bot you have to:

  • Clone this repository

  • Create .env file in the root of the repository and add your token

    TOKEN=<YOUR-TOKEN>
    
  • Start the bot using docker compose

    docker compose up -d
    

Cryptography

  • Scrypt is used to store and verify the master password
  • PBKDF2 is used to get a 256 bit key for encryption
  • ChaCha20-Poly1305 is used to encrypt logins and passwords

Commands

These commands are supported:

  • /start — displays the welcome message
  • /help — displays this text
  • /set_master_pass — sets the master password
  • /menu — gives you a menu to manage your accounts
  • /add_account — adds the account
  • /get_account — gets the account
  • /get_accounts — gets a list of accounts
  • /delete — deletes the account
  • /delete_all — deletes all the accounts and the master password
  • /export — exports all the accounts in a json file
  • /import — loads the accounts from a json file
  • /gen_password — generates 10 secure passwords
  • /cancel — cancels the current action
  • /change_language - allows you to change the language