Metadata-Version: 2.1
Name: jami-cli
Version: 0.7.0
Summary: 
Home-page: https://github.com/cliffxuan/jami-cli
License: MIT
Author: Cliff Xuan
Author-email: cliff.xuan@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: cryptography (>=41.0.0,<42.0.0)
Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
Project-URL: Repository, https://github.com/cliffxuan/jami-cli
Description-Content-Type: text/markdown

# jami-cli
A command line app for encrypting/decrypting text with a password
![logo](https://raw.githubusercontent.com/cliffxuan/jami-cli/main/logo.jpeg)

## install
`pip install jami-cli`


## usage

- encrypt
```
❯ jami encrypt
Type in your text: hello world
Password: 123 (hidden)
Repeat for confirmation: 123 (hidden)
rK_w8vK82y7fr3-GLOgsTAABhqCAAAAAAGWtWEEdwP4sZlY1wTyD0NZqLAk5z0CkD-EHqS_77wF3IPt-jODfNfKiLEFenpXE5BybcVVCeKf2LOBFJhOJ-U4YaBoN
```

- decrypt
```
❯ jami decrypt
Type in your encrypted text: rK_w8vK82y7fr3-GLOgsTAABhqCAAAAAAGWtWEEdwP4sZlY1wTyD0NZqLAk5z0CkD-EHqS_77wF3IPt-jODfNfKiLEFenpXE5BybcVVCeKf2LOBFJhOJ-U4YaBoN
Password: 123 (hidden)
hello world

