Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mastermind-mayhem/couturecypher
- Owner: mastermind-mayhem
- License: mit
- Created: 2023-01-19T15:19:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-01T13:06:00.000Z (about 1 year ago)
- Last Synced: 2024-12-17T13:24:30.981Z (about 1 month ago)
- Language: Python
- Size: 32.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)