Ejemplo n.º 1
0
 /// <summary>
 /// 解密
 /// </summary>
 /// <param name="encrypted">密文</param>
 /// <returns>明文字节</returns>
 public byte[] Decryptor(byte[] encrypted)
 {
     return(RSACrypto.Decryptor(encrypted, PrivateKey));
 }