我已经在我的mvc项目中使用https://github.com/jrnker/CSharp-easy-RSA-PEM来实现RSA。
它在IIS和我的本地计算机上运行良好也可以通过visual studio,但是当我在服务器上部署我的应用程序时,它给了我以下异常。
"System.NullReferenceException: Object reference not set to an instance of an object.\r\n at CoreEntities.Classes.Utility.RSADecrypt(String input)\r\n at WebAPI.Attributes.ApiAuthorizeAttribute.Authorize(HttpActionContext actionContext)"
我的代码是:
public static string RSADecrypt(string input)
{
try
{
string priv = File.ReadAllText(HostingEnvironment.MapPath("~/Certificates/consumer.pem"));
RSACryptoServiceProvider privc = Crypto.DecodeRsaPrivateKey(priv);
return Crypto.DecryptString(input, privc);
}
catch (Exception ex)
{
throw ex;
}
}
我在github上发布了我的问题@ https://github.com/jrnker/CSharp-easy-RSA-PEM/issues/8
经过多次调试后,我发现系统没有创建RSACryptoServiceProvider
CspParameters parms = new CspParameters();
parms.Flags = CspProviderFlags.NoFlags;
parms.KeyContainerName = Guid.NewGuid().ToString().ToUpperInvariant();
parms.ProviderType = ((Environment.OSVersion.Version.Major > 5) || ((Environment.OSVersion.Version.Major == 5) && (Environment.OSVersion.Version.Minor >= 1))) ? 0x18 : 1;
// Exception is comping in below line.
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(parms);
RSAParameters rsAparams = new RSAParameters();
例外: - System.Security.Cryptography.CryptographicException: The system cannot find the file specified.\r\n\r\n at CoreEntities.Classes.Utility.RSADecrypt(String input)\r\n at WebAPI.Attributes.ApiAuthorizeAttribute.Authorize(HttpActionContext actionContext)
任何人都可以帮忙......
答案 0 :(得分:0)
@Downvoters,请注意。
我找到了解决这个问题的方法。
此问题主要是由于Windows Server 2008及更高版本中包含的新安全限制。
在Windows Server 2008中,默认情况下将创建一个名为CryptoGraphic Operator的新用户。
如果您的应用程序正在使用RSACryptoServiceProvider,并且当您决定在Windows Server 2008 IIS7上托管您的应用程序时,请按照以下步骤进行操作
答案 1 :(得分:0)
我通过更改以下过程来解决了该问题,并且无需操纵Web服务器(IIS,NGINX或其他任何服务器)。我也在Linux上测试了它,效果很好。
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
rsa.FromXmlString(xmlPrivateKey);
string toBeSigned= "string";
byte[] signMain = rsa.SignData(Encoding.UTF8.GetBytes(toBeSigned), new SHA1CryptoServiceProvider());
string signature = Convert.ToBase64String(signMain);