/// <summary>
 /// 解密
 /// </summary>
 /// <param name="decryptionStr"></param>
 /// <returns></returns>
 public string Decryption(string decryptionStr)
 {
     return(m_IEncryption.Decryption(decryptionStr));
 }
Exemplo n.º 2
0
 public byte[] DecryptDataWithRSA(byte[] data)
 {
     return(rsa.Decryption(data, new RSAParameters()));
 }