我想在PHP和C#之间进行RSA通信。 我尝试使用phpseclib,但我遇到了一些问题。
这就是我在服务器上创建密钥的方法:
$rsa = new Crypt_RSA();
extract($rsa->createKey());
$_SESSION['RSAPubKey'] = $publickey;
$_SESSION['RSAPrivKey'] = $privatekey;
echo $_SESSION['RSAPubKey']; //here I send the public key to the client
这是C#客户端:
string valasz = RequestPOST(Program.SzerverDomain + "/Teszt1/SZCShost.php", "hostmuv=biztkapcsrsakulcs");
这是" RequestPOST()"方法:
static CookieContainer cookieJar = new CookieContainer();
public static string RequestPOST(String URL, string postData)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Uri.EscapeUriString(URL));
request.CookieContainer = cookieJar;
var data = Encoding.UTF8.GetBytes(postData);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = data.Length;
using (var stream = request.GetRequestStream())
{
stream.Write(data, 0, data.Length);
}
var response = (HttpWebResponse)request.GetResponse();
var responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
return responseString.Replace("<br>", "\n").Replace("<br/>", "\n");
}
现在我有钥匙,但我不能使用它们。我试图加载它们,但我在PHP和C#中也没有成功。 如果您使用带有C#的phpseclib,您会非常友好地向我展示您的源代码吗?或者你能以其他方式帮助我吗?
谢谢你的好意!
答案 0 :(得分:0)
此解决方案来自neubert的评论:
您已经发布了代码,该代码将从PHP脚本获取响应然后将其返回。也就是说,这里有一些代码:http://csharp-tricks-en.blogspot.de/2015/04/rsa-with-c-and-php.html phpseclib的东西已经过时了 - 现代版本的phpseclib内置了对XML密钥的支持。但C#可以帮助你。
我只是在这里发帖找到它。
This article解释了该方法。