예제 #1
0
 private void buttonSetB_Click(object sender, RoutedEventArgs e)
 {
     try
     {
         BigInteger b = BigInteger.Parse(textBoxB.Text);
         diffiHellman.SetB(b);
         textBox_a.Text = "";
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }