Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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