【发布时间】:2017-06-13 01:02:30
【问题描述】:
如果我从文件或当前用户的商店加载证书,我有一些工作代码会生成正确的字符串签名。但是,如果我从机器证书存储中加载完全相同的证书(相同的 .p12 和相同的指纹),它的行为会有所不同。从该商店加载时,我的 C# 代码生成的签名是长度的一半(1024 位而不是 2048 位)并且不正确。在这两种情况下,私钥似乎都可以正确加载。
为什么从哪个存储加载证书对生成哪个签名有影响?为什么签名会是一半的长度?
从 CurrentUser 加载:
Thumbprint: FBBE05A1C5F2AEF637CDE20A7985CD1011861651
Has private key:True
rsa.KeySize (bits) =2048
Signature Length (bits): 2048
Signature: kBC2yh0WCo/AU8aVo+VUbRoh67aIJ7SWM4dRMkNvt...
(正确)
从 LocalMachine 加载:
Thumbprint: FBBE05A1C5F2AEF637CDE20A7985CD1011861651
Has private key: True
rsa.KeySize (bits) = 1024
Signature Length (bits): 1024
Signature: RijmdQ73DXHK1IUYkOzov2R+WRdHW8tLqsH....
(不正确 - 请注意 1024 位密钥大小和签名长度)
这是我正在使用的 C#:
string s = "AE0DE01564,1484821101811,http://localhost:8080/example_site/CallBack";
var inputData = Encoding.UTF8.GetBytes(s);
var store = new X509Store(StoreName.My, StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly);
string thumbprint = CleanThumbPrint("fb be 05 a1 c5 f2 ae f6 37 cd e2 0a 79 85 cd 10 11 86 16 51");
X509Certificate2Collection col = store.Certificates.Find(X509FindType.FindByThumbprint, thumbprint, false);
// TODO: close store.
X509Certificate2 certificate = null;
Console.WriteLine("Cert count: " + col.Count);
if (col.Count == 1)
{
certificate = col[0];
RSACryptoServiceProvider rsa = (RSACryptoServiceProvider)col[0].PrivateKey;
// Force use of the Enhanced RSA and AES Cryptographic Provider with openssl-generated SHA256 keys
var enhCsp = new RSACryptoServiceProvider().CspKeyContainerInfo;
var cspparams = new CspParameters(enhCsp.ProviderType, enhCsp.ProviderName, rsa.CspKeyContainerInfo.KeyContainerName);
rsa = new RSACryptoServiceProvider( cspparams);
Console.WriteLine("Name: " + certificate.SubjectName.Name);
Console.WriteLine("Thumbprint: " + certificate.Thumbprint);
Console.WriteLine("Has private key: " + certificate.HasPrivateKey);
Console.WriteLine("Sig algorithm: " + certificate.SignatureAlgorithm);
Console.WriteLine("rsa.KeySize (bits) =" + rsa.KeySize);
var sha256 = CryptoConfig.CreateFromName("SHA256");
byte[] signature = rsa.SignData(inputData, sha256);
Console.WriteLine("Signature Length (bits): " + signature.Length * 8);
Console.WriteLine("Signature: " + System.Convert.ToBase64String(signature));
Console.WriteLine();
}
【问题讨论】:
-
你能检查一下返回证书的颁发者和序列号吗?
-
@MaartenBodewes 发行者和序列号相同。
-
唯一能想到的就是私钥与证书不匹配。也许 P12 的构造不正确。我很难想象微软的 certstore 是不正确的(另一方面,MS 之前让我很惊讶)。
-
我已经更新了我的帖子,因为我在重新初始化 RSA 对象之前输出了一些调试行。当我从机器存储加载它时,我现在得到一个 1024 位 RSA 密钥大小。
-
可能你有编码和解码相关的问题,见Base64。 stackoverflow.com/questions/9283716/…
标签: c# encryption cryptography x509certificate