コード例 #1
0
 public ContinuedFractionAttack(BigInteger e, BigInteger n)
 {
     m_rsaKey = new RsaKey(e, n);
     m_lstContinuedFraction = new List <BigInteger>();
     m_form = Program.m_form;
 }
コード例 #2
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(m_form = new WienerMainForm());
 }