摘要: 用到的是:BouncyCastle.Crypto.dll类库官网:http://www.bouncycastle.org/csharp/生成密钥对 RsaKeyPairGenerator keyGenerator = new RsaKeyPairGenerator(); //密钥构造器 RsaKeyGenerationParameters p = new RsaKeyGenerationParameters(BigInteger.ValueOf(3), new SecureRandom(), 1024, 25); //初始化密钥... 阅读全文
posted @ 2013-05-08 01:44 微米大大 阅读(764) 评论(1) 推荐(0) 编辑