https://github.com/avp/ciphertools
A python file with common cipher functions.
https://github.com/avp/ciphertools
Last synced: 3 months ago
JSON representation
A python file with common cipher functions.
- Host: GitHub
- URL: https://github.com/avp/ciphertools
- Owner: avp
- Created: 2014-09-23T02:11:23.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-15T18:51:33.000Z (almost 10 years ago)
- Last Synced: 2025-02-11T12:45:29.451Z (5 months ago)
- Language: Python
- Size: 207 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ciphertools
===========
[](https://travis-ci.org/avp/ciphertools)A python file with common cipher functions.
Installation
------------```sh
git clone https://github.com/avp/ciphertools
cd ciphertools
./setup.py install
```Usage
-----```python
from ciphertools import playfair
ciphered = playfair.playfair_encrypt(plaintext, key)
decrypted = playfair.playfair_decrypt(ciphered, key)
```Supported Ciphers
------------------ Caesar
- Atbash
- Skip
- Playfair
- Vigenere
- Scytale
- More to be added soon