我的产品需要能够生成.snk文件(不需要在系统上安装Microsoft SDK)。 我可以生成一个工作的SNK文件,但是在指定密码时我似乎无法使其工作。 谁能给我一些指示? 这就是我到目前为止所做的:
internal static void CreateKeyPairFile(string fileName, int keySize, string password)
{
if ((keySize % 8) != 0)
{
throw new CryptographicException("Invalid key size. Valid size is 384 to 16384 mod 8. Default 1024.");
}
CspParameters parms = new CspParameters();
parms.KeyNumber = 2;
if (null != password)
{
var passwordString = new System.Security.SecureString();
foreach (char c in password)
{
passwordString.AppendChar(c);
}
parms.Flags = CspProviderFlags.UseUserProtectedKey;
parms.KeyPassword = passwordString;
}
RSACryptoServiceProvider provider = new RSACryptoServiceProvider(keySize, parms);
byte[] array = provider.ExportCspBlob(!provider.PublicOnly);
using (FileStream fs = new FileStream(fileName, FileMode.Create, FileAccess.Write))
{
fs.Write(array, 0, array.Length);
}
}
答案 0 :(得分:2)
您使用的KeyPassword参数用于其他目的,而不是您尝试使用的参数。来自文档:
使用KeyPassword属性为智能卡提供密码 键。使用此属性指定密码时,请输入密码 对话框不会呈现给用户。
另请参阅此问题的答案:Simple use of RSACryptoServiceProvider KeyPassword fails
除此之外,您似乎无法使用密码保护.snk文件。在这种情况下,您可以使用 PKCS#12 文件(.pfx)代替,该文件可用于对程序集进行签名,也可以使用密码保护。您可以使用BouncyCastle.NET等库生成PKCS#12文件。关于如何做到这一点有很好的文档,所以我不会在这里详细说明。
例如参见:Is it possible to programmatically generate an X509 certificate using only C#?