public ChatFormBob(BridgeForm bf)
 {
     InitializeComponent();
     Bridge = bf;
     ActionTimer.Start();
     DecryptBtn.Enabled = false;
     EncryptBtn.Enabled = false;
 }
 public ChatFormAlice(BridgeForm bf)
 {
     InitializeComponent();
     primeNumbers = new List <int> {
         367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433,
         439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503,
         509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593,
         599, 601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659,
         661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743,
         751, 757, 761, 769, 773, 787, 797, 809, 811, 821, 823, 827,
         829, 839, 853, 857, 859, 863, 877, 881, 883, 887, 907, 911
     };
     ActionTimer.Start();
     Bridge             = bf;
     DecryptBtn.Enabled = false;
     EncryptBtn.Enabled = false;
 }