Columnar Transposition Cipher

Key
Pad

Python代码参考

from pycipher import ColTrans

print ColTrans("HELLO").encipher('HELLOWORLD')
print ColTrans("HELLO").decipher('EOHWLRLLOD')