Skip to main content

Posts

Showing posts from August 10, 2014

Rail Fence Technique Cryptography program in c sharp #

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication6 {     class Program     {         public static string s = "",s2="";         public static int i = 0;         static void Main(string[] args)         {             int ch = 1;             while (ch == 1 || ch == 2)             {                 Console.WriteLine("Enter 1 for cipher "+"\n"+"Enter 2 for decipher ");                 ch = Convert.ToInt32(Console.ReadLine());                 if (ch == 1)                     cipher();                 else                     decipher();             }             Console.ReadKey();         }         static void cipher()         {             Console.WriteLine("Enter plain text");             s = Console.ReadLine();           s2 = "";             string  s3 = "";             for (i = 0; i < s.Length; i+=2)