Metadata-Version: 2.1
Name: ucyph
Version: 0.1.3
Summary: A command-line tool for encrypting and decrypting strings using various ciphers
Author-email: Adam Slay <adamslay11@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/ucyph
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# ucyph
Encrypt and Decrypt text from the command line using ciphers that are common and/or historical. 

## Table of Contents

## Installation
```bash
pip install ucyph
```

## Usage

### Examples:
The basic syntax for a command includes the cipher to be used, the text to be used, and whether to encrypt or decrypt the text. Here is an example command:
```shell
ucyph -c 5 -k 'password' -s 'Hello World' -Ev
```

This command calls the ```Vigenere``` cipher via the ```-c``` flag with a **key** of 'password', **encrypts** the text via the ```-E``` flag, and prints a verbose version of the output. 
