为公钥。让 pubKey 成为从 x509certificate2 对象以 .cer 格式导出的公钥
仅当您拥有整个证书时才适用“.cer 格式”;这就是 X509Certificate2 将导出的所有内容。(好吧,或者证书集合,或者具有相关私钥的证书集合)。
编辑(2021-08-20):
- 从 .NET 6 开始,您可以使用
cert.PublicKey.ExportSubjectPublicKeyInfo()
获取 DER 编码的 SubjectPublicKeyInfo。
- 在 .NET Core 3+/.NET 5+ 中,您可以使用
cert.GetRSAPublicKey()?.ExportSubjectPublicKeyInfo()
(或您的密钥是什么算法)
- 在 .NET 5+ 中,您可以将这些答案转换为 PEM
PemEncoding.Write("PUBLIC KEY", spki)
- 无论您的 .NET/.NET Core/.NET Framework 版本如何,您都可以使用该
System.Formats.Asn1
包AsnWriter
来避免BuildSimpleDerSequence
工作(2020-11-09 发布)。
-- 原答案继续 --
.NET 内置的任何内容都不会为您提供证书的 DER 编码的 SubjectPublicKeyInfo 块,这就是 PEM 编码下的“公钥”。
如果需要,您可以自己构建数据。对 RSA 来说,这还不算太糟糕,尽管并不完全令人愉快。数据格式在https://www.rfc-editor.org/rfc/rfc3280#section-4.1中定义:
SubjectPublicKeyInfo ::= SEQUENCE {
algorithm AlgorithmIdentifier,
subjectPublicKey BIT STRING }
AlgorithmIdentifier ::= SEQUENCE {
algorithm OBJECT IDENTIFIER,
parameters ANY DEFINED BY algorithm OPTIONAL }
https://www.rfc-editor.org/rfc/rfc3279#section-2.3.1描述了如何对 RSA 密钥进行编码,特别是:
rsaEncryption OID 旨在用于 AlgorithmIdentifier 类型值的算法字段。对于该算法标识符,参数字段必须具有 ASN.1 类型 NULL。
RSA 公钥必须使用 ASN.1 类型的 RSAPublicKey 进行编码:
RSAPublicKey ::= SEQUENCE {
modulus INTEGER, -- n
publicExponent INTEGER } -- e
这些结构背后的语言是 ASN.1,由ITU X.680定义,它们被编码为字节的方式由ITU X.690的可分辨编码规则 (DER) 规则集涵盖。
.NET 实际上给了你很多这样的部分,但你必须组装它们:
private static string BuildPublicKeyPem(X509Certificate2 cert)
{
byte[] algOid;
switch (cert.GetKeyAlgorithm())
{
case "1.2.840.113549.1.1.1":
algOid = new byte[] { 0x06, 0x09, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x01 };
break;
default:
throw new ArgumentOutOfRangeException(nameof(cert), $"Need an OID lookup for {cert.GetKeyAlgorithm()}");
}
byte[] algParams = cert.GetKeyAlgorithmParameters();
byte[] publicKey = WrapAsBitString(cert.GetPublicKey());
byte[] algId = BuildSimpleDerSequence(algOid, algParams);
byte[] spki = BuildSimpleDerSequence(algId, publicKey);
return PemEncode(spki, "PUBLIC KEY");
}
private static string PemEncode(byte[] berData, string pemLabel)
{
StringBuilder builder = new StringBuilder();
builder.Append("-----BEGIN ");
builder.Append(pemLabel);
builder.AppendLine("-----");
builder.AppendLine(Convert.ToBase64String(berData, Base64FormattingOptions.InsertLineBreaks));
builder.Append("-----END ");
builder.Append(pemLabel);
builder.AppendLine("-----");
return builder.ToString();
}
private static byte[] BuildSimpleDerSequence(params byte[][] values)
{
int totalLength = values.Sum(v => v.Length);
byte[] len = EncodeDerLength(totalLength);
int offset = 1;
byte[] seq = new byte[totalLength + len.Length + 1];
seq[0] = 0x30;
Buffer.BlockCopy(len, 0, seq, offset, len.Length);
offset += len.Length;
foreach (byte[] value in values)
{
Buffer.BlockCopy(value, 0, seq, offset, value.Length);
offset += value.Length;
}
return seq;
}
private static byte[] WrapAsBitString(byte[] value)
{
byte[] len = EncodeDerLength(value.Length + 1);
byte[] bitString = new byte[value.Length + len.Length + 2];
bitString[0] = 0x03;
Buffer.BlockCopy(len, 0, bitString, 1, len.Length);
bitString[len.Length + 1] = 0x00;
Buffer.BlockCopy(value, 0, bitString, len.Length + 2, value.Length);
return bitString;
}
private static byte[] EncodeDerLength(int length)
{
if (length <= 0x7F)
{
return new byte[] { (byte)length };
}
if (length <= 0xFF)
{
return new byte[] { 0x81, (byte)length };
}
if (length <= 0xFFFF)
{
return new byte[]
{
0x82,
(byte)(length >> 8),
(byte)length,
};
}
if (length <= 0xFFFFFF)
{
return new byte[]
{
0x83,
(byte)(length >> 16),
(byte)(length >> 8),
(byte)length,
};
}
return new byte[]
{
0x84,
(byte)(length >> 24),
(byte)(length >> 16),
(byte)(length >> 8),
(byte)length,
};
}
DSA 和 ECDSA 密钥对 AlgorithmIdentifier.parameters 具有更复杂的值,但 X509Certificate 的 GetKeyAlgorithmParameters() 恰好将它们返回正确格式,因此您只需要写下它们的 OID(字符串)查找密钥和它们的 OID(字节 [])编码switch 语句中的值。
我的 SEQUENCE 和 BIT STRING 构建器肯定会更高效(哦,看看所有那些糟糕的数组),但这对于性能不重要的东西就足够了。
要检查您的结果,您可以将输出粘贴到 中openssl rsa -pubin -text -noout
,如果它打印出除错误以外的任何内容,则您已为 RSA 密钥进行了合法编码的“PUBLIC KEY”编码。