Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mastermind-mayhem/couturecypher

A two stage encoder with a mix of caesar and substitution cyphers
https://github.com/mastermind-mayhem/couturecypher

Last synced: 18 days ago
JSON representation

A two stage encoder with a mix of caesar and substitution cyphers

Awesome Lists containing this project

README

        

# CoutureCypher
A two stage encoder made with a mix of a caesar ciphers.

To initialize call the class with and object to either decrypt or encrypt

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install Couture-Cypher.

```bash
pip install CoutureCypher
```

## Utilization

```python
from CoutureCypher import *

# Initializes with an initial string
cipher = cypher('initial-string')

# returns decrypted variation of the initial string
cipher.decrypt()

# returns encrypted variation of the initial string
cipher.encrypt()
```

## License

[MIT](https://choosealicense.com/licenses/mit/)