SkillAgentSearch skills...

Pycipher

python module containing many classical cipher algorithms: Caesar, Vigenere, ADFGVX, Enigma etc.

Install / Use

/learn @jameslyons/Pycipher
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

pycipher

Common classical ciphers implemented in Python. Documentation is available at http://pycipher.readthedocs.io/en/master/ .

Install

::

pip install pycipher

Example usage

::

>>> from pycipher import ADFGVX
>>> adfgvx = ADFGVX(key='PH0QG64MEA1YL2NOFDXKR3CVS5ZW7BJ9UTI8', keyword='GERMAN')
>>> adfgvx.encipher("Hello world!")
'FVFDAGXAFFFFGFAGADFG'
>>> adfgvx.decipher(_)
'HELLOWORLD'

Feedback

The code is hosted on GitHub: https://github.com/jameslyons/pycipher

If you find any bugs make an issue or create a pull request.

To run the test suite::

python setup.py test
View on GitHub
GitHub Stars226
CategoryDevelopment
Updated2mo ago
Forks54

Languages

Python

Security Score

95/100

Audited on Jan 12, 2026

No findings