[Modify] Polish it

This commit is contained in:
sta 2020-10-22 19:07:52 +09:00
parent a64125b4a3
commit 99034c14d2

View File

@ -191,8 +191,8 @@ namespace WebSocketSharp.Net
{ {
var rsa = new RSACryptoServiceProvider (); var rsa = new RSACryptoServiceProvider ();
var pvk = File.ReadAllBytes (path); var key = File.ReadAllBytes (path);
rsa.ImportCspBlob (pvk); rsa.ImportCspBlob (key);
return rsa; return rsa;
} }