By deepshikha
The Encrypted text using Rail Fence cipher in C++ is an easy to apply transposition cipher that jumbles up the order of the letters of a message in a quick convenient way.
It is a type of transposition cypher technique to encrypt the plain text message into a cypher text by rearranging the characters of the plain text. The alternate characters are picked first, starting from the first character. The Rail Fence cypher works by writing your message on alternate lines across the page and then reading off each line in turn.
Encryption
For Example
Plain text - TESSERACTCODING
Method - T. S. E. A. T. O. I. G
E S R C. C. D. N
Cipher text - TSEATOIGESRCCDN
Submitted by deepshikha (deepshikha)
Download packets of source code on Coders Packet
Comments