Square 5x5, Removed Letter: 'W'
A Polybius Square is a table that allows someone to translate letters into numbers. To give a small level of encryption, this table can be randomized and shared with the recipient. In order to fit the 26 letters of the alphabet into the 25 spots created by the table, the letters V and W are usually combined.
Each letter can be represented by a group of two numbers: that of his line and that of his column. So "A"=11, "E"=15, "U"=51 ...
Download the package and extract it, then:
$ cd package_directory
$ python setup.py build
$ sudo python setup.py install
Using pip
:
$ pip install polybius
The simple example for using Polybius Square:
>>> from polybius import Polybius
>>> myPolybius = Polybius()
>>> myPolybius.encipher("Boubakr")
12 35 51 12 11 31 43
>>> myPolybius.decipher("12 35 51 12 11 31 43")
BOUBAKR
$ python3 main.py
If you have any problem with The Polybius Square Encipher/Decipher
don't hesitate to contact me