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