Metadata-Version: 2.1
Name: pyciphering
Version: 0.1.5
Summary: An awesome package to text ciphering
Home-page: https://github.com/majsterkovic/pyciphering
Author: majsterkovic
Author-email: mariusz8h@o2.pl
License: MIT
Keywords: ciphers,encryption,encode,decode
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

![Latest version](https://img.shields.io/pypi/v/pyciphering?color=%23f6d155&label=version&style=flat-square)

# Pyciphering

##### An awesome package to text ciphering

### Installation

You can install pyciphering with **pip** as follows:

```
pip install pyciphering
```

### Usage

```python
import pyciphering
```

Printing encoded and decoded text is incredibly easy:

```python
print(pyciphering.atbash.encode("Hello world!")

print(pyciphering.atbash.decode("ZYX")
```

### Ciphers

#### List of all ciphers

- atbash
- caesar
- viegenere
- bifid
- trifid
- polybius

