摘要:
using System; using System.IO; using System.Text; using Org.BouncyCastle.Crypto; using Org.BouncyCastle.OpenSsl; using Org.BouncyCastle.Security; usin 阅读全文
摘要:
Thread.Join()在MSDN中的解释:Blocks the calling thread until a thread terminates 阻塞calling thread,直到当前join的线程完成 什么是calling thread:开启新线程所在的线程 例如:在main函数创建一个线 阅读全文
摘要:
class RSACryptoItem { public RSACryptoServiceProvider Provider; public List<byte> PubKeyBytes; } public class RSAManager { private RSACryptoItem item; 阅读全文