摘要:
公钥(Public Key)与私钥(Private Key)是通过一种算法得到的一个密钥对(即一个公钥和一个私钥),公钥是密钥对中公开的部分,私钥则是非公开的部分。公钥通常用于加密会话密钥、验证数字签名,或加密可以用相应的私钥解密的数据。通过这种算法得到的密钥对能保证在世界范围内是唯一的。使用这个密 阅读全文
摘要:
using System; using System.Diagnostics; using System.Text; using System.Collections; using System.Collections.Generic; class Test { public delegate void deltest(string str); public static vo... 阅读全文