Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avp/ciphertools
A python file with common cipher functions.
https://github.com/avp/ciphertools
Last synced: 15 days 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 (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-15T18:51:33.000Z (about 9 years ago)
- Last Synced: 2024-10-10T13:37:07.289Z (about 1 month 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
===========
[![Build Status](https://travis-ci.org/avp/ciphertools.svg?branch=master)](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