Metadata-Version: 2.1
Name: jami-cli
Version: 0.1.0
Summary: 
Author: Cliff Xuan
Author-email: cliff.xuan@gmail.com
Requires-Python: >=3.7,<4.0
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 (>=0.9.0,<0.10.0)
Description-Content-Type: text/markdown

# jami
A command line app for encrypting/decrypting text with a password


## 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
```

