Пример #1
0
 public static void El_GammalTest()
 {
     El_Gammal Alice = new El_Gammal();
     El_Gammal Bob = new El_Gammal();
     Alice.CreateLink(Bob);
     Console.WriteLine("Enter text ");
     string text = Console.ReadLine();
     string bobtext = Bob.Encryption(text);
     Console.WriteLine(bobtext);
     string alicetext = Alice.Decryption(bobtext);
     Console.WriteLine(alicetext);
     Console.ReadKey();
 }