摘要: C#实现MD5加密摘自:http://blog.csdn.net/shenghui188/archive/2010/03/28/5423959.aspx方法一首先,先简单介绍一下MD5MD5的全称是message-digest algorithm 5(信息-摘要算法,在90年代初由mit laboratory for computer science和rsa data security inc的ronald l. rivest开发出来, 经md2、md3和md4发展而来。MD5具有很好的安全性(因为它具有不可逆的特征,加过密的密文经过解密后和加密前的东东相同的可能性极小)引用using Sys 阅读全文
posted @ 2012-03-25 16:54 魔_君 阅读(12637) 评论(2) 推荐(0) 编辑
摘要: //按钮启动第二个窗口 private void button1_Click(object sender, EventArgs e) { //另起一个线程启动第二个窗口 new Thread(showF2).Start(); this.Close(); } //启动第二个窗口的方法 void showF2() { Form2 f2 = new Form2(); //这句很重要,不能用f2.Show(); Application.Run(f2); }转自:http://www.cnblogs.com/ghypnus/archive/2012/03/25/2416541.html 阅读全文
posted @ 2012-03-25 16:04 魔_君 阅读(172) 评论(0) 推荐(0) 编辑