我告诉您,对于非对称加密,您使用公钥加密明文并使用私钥对其进行解密。所以我尝试了以下方法:
static void Main(string[] args)
{
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
string pubkey = rsa.ToXmlString(false);
string prikey = rsa.ToXmlString(true);
byte[] someThing = RSAEncrypt(Encoding.Unicode.GetBytes("Hello World"), pubkey);
byte[] anotherThing = RSADecrypt(someThing, prikey);
Console.WriteLine(Convert.ToBase64String(anotherThing));
}
和加密和解密函数
public static byte[] RSAEncrypt(byte[] plaintext, string destKey)
{
byte[] encryptedData;
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsa.FromXmlString(destKey);
encryptedData = rsa.Encrypt(plaintext, true);
rsa.Dispose();
return encryptedData;
}
public static byte[] RSADecrypt(byte[] ciphertext, string srcKey)
{
byte[] decryptedData;
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsa.FromXmlString(srcKey);
decryptedData = rsa.Decrypt(ciphertext, true);
rsa.Dispose();
return decryptedData;
}
我希望控制台显示Hello World
,但会显示此SABlAGwAbABvACAAVwBvAHIAbABkAA==
。我错误地使用了RSACryptoServiceProvider吗?
答案 0 :(得分:3)
它是base 64,解码字符串,你会得到“Hello world”。
答案 1 :(得分:3)
您的最后一行应为:
Console.WriteLine(Encoding.Unicode.GetString(anotherThing));
目前您正在将解密后的字符串转换为Base64编码