84

C# を使用して、自己署名証明書を作成する必要があります (ローカル暗号化用 - 通信の保護には使用されません)。

Crypt32.dllでP/Invokeを使用するいくつかの実装を見てきましたが、それらは複雑で、パラメーターを更新するのが難しく、可能であれば P/Invoke も避けたいと考えています。

クロス プラットフォームは必要ありません。Windows だけで十分です。

理想的には、結果が X509Certificate2 オブジェクトになり、これを使用して Windows 証明書ストアに挿入したり、PFXファイルにエクスポートしたりできます。

4

7 に答える 7

81

この実装では、CX509CertificateRequestCertificateCOM オブジェクト (およびフレンド - MSDN doc )certenroll.dllを使用して、自己署名証明書要求を作成し、署名します。

以下の例は非常に簡単です (ここで行われる COM のビットを無視すれば)。実際にはオプションのコード部分がいくつかあります (EKU など)。用途に合わせて。

public static X509Certificate2 CreateSelfSignedCertificate(string subjectName)
{
    // create DN for subject and issuer
    var dn = new CX500DistinguishedName();
    dn.Encode("CN=" + subjectName, X500NameFlags.XCN_CERT_NAME_STR_NONE);

    // create a new private key for the certificate
    CX509PrivateKey privateKey = new CX509PrivateKey();
    privateKey.ProviderName = "Microsoft Base Cryptographic Provider v1.0";
    privateKey.MachineContext = true;
    privateKey.Length = 2048;
    privateKey.KeySpec = X509KeySpec.XCN_AT_SIGNATURE; // use is not limited
    privateKey.ExportPolicy = X509PrivateKeyExportFlags.XCN_NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG;
    privateKey.Create();

    // Use the stronger SHA512 hashing algorithm
    var hashobj = new CObjectId();
    hashobj.InitializeFromAlgorithmName(ObjectIdGroupId.XCN_CRYPT_HASH_ALG_OID_GROUP_ID,
        ObjectIdPublicKeyFlags.XCN_CRYPT_OID_INFO_PUBKEY_ANY, 
        AlgorithmFlags.AlgorithmFlagsNone, "SHA512");

    // add extended key usage if you want - look at MSDN for a list of possible OIDs
    var oid = new CObjectId();
    oid.InitializeFromValue("1.3.6.1.5.5.7.3.1"); // SSL server
    var oidlist = new CObjectIds();
    oidlist.Add(oid);
    var eku = new CX509ExtensionEnhancedKeyUsage();
    eku.InitializeEncode(oidlist); 

    // Create the self signing request
    var cert = new CX509CertificateRequestCertificate();
    cert.InitializeFromPrivateKey(X509CertificateEnrollmentContext.ContextMachine, privateKey, "");
    cert.Subject = dn;
    cert.Issuer = dn; // the issuer and the subject are the same
    cert.NotBefore = DateTime.Now;
    // this cert expires immediately. Change to whatever makes sense for you
    cert.NotAfter = DateTime.Now; 
    cert.X509Extensions.Add((CX509Extension)eku); // add the EKU
    cert.HashAlgorithm = hashobj; // Specify the hashing algorithm
    cert.Encode(); // encode the certificate

    // Do the final enrollment process
    var enroll = new CX509Enrollment();
    enroll.InitializeFromRequest(cert); // load the certificate
    enroll.CertificateFriendlyName = subjectName; // Optional: add a friendly name
    string csr = enroll.CreateRequest(); // Output the request in base64
    // and install it back as the response
    enroll.InstallResponse(InstallResponseRestrictionFlags.AllowUntrustedCertificate,
        csr, EncodingType.XCN_CRYPT_STRING_BASE64, ""); // no password
    // output a base64 encoded PKCS#12 so we can import it back to the .Net security classes
    var base64encoded = enroll.CreatePFX("", // no password, this is for internal consumption
        PFXExportOptions.PFXExportChainWithRoot);

    // instantiate the target class with the PKCS#12 data (and the empty password)
    return new System.Security.Cryptography.X509Certificates.X509Certificate2(
        System.Convert.FromBase64String(base64encoded), "", 
        // mark the private key as exportable (this is usually what you want to do)
        System.Security.Cryptography.X509Certificates.X509KeyStorageFlags.Exportable
    );
}

結果は、メソッドを使用して証明書ストアに追加X509StoreまたはエクスポートできX509Certificate2ます。

完全に管理され、Microsoft のプラットフォームに関連付けられていない場合、および Mono のライセンスに問題がない場合は、 Mono.SecurityからX509CertificateBuilderを見ることができます。Mono.Security は、Mono の残りの部分を実行する必要がなく、準拠している任意の .Net 環境 (Microsoft の実装など) で使用できるという点で、Mono からスタンドアロンです。

于 2012-12-10T17:46:24.083 に答える
20

もう1つのオプションは、CodePlexのCLRセキュリティ拡張ライブラリを使用することです。このライブラリは、自己署名X.509証明書を生成するヘルパー関数を実装しています。

X509Certificate2 cert = CngKey.CreateSelfSignedCertificate(subjectName);

また、その関数の実装(in CngKeyExtensionMethods.cs)を調べて、マネージコードで自己署名証明書を明示的に作成する方法を確認することもできます。

于 2012-12-12T00:31:57.743 に答える
11

無料のPluralSight.Crypto ライブラリを使用して、自己署名 X.509 証明書をプログラムで簡単に作成できます。

    using (CryptContext ctx = new CryptContext())
    {
        ctx.Open();

        X509Certificate2 cert = ctx.CreateSelfSignedCertificate(
            new SelfSignedCertProperties
            {
                IsPrivateKeyExportable = true,
                KeyBitLength = 4096,
                Name = new X500DistinguishedName("cn=localhost"),
                ValidFrom = DateTime.Today.AddDays(-1),
                ValidTo = DateTime.Today.AddYears(1),
            });

        X509Certificate2UI.DisplayCertificate(cert);
    }

PluralSight.Crypto には .NET 3.5 以降が必要です。

于 2012-12-10T23:04:06.617 に答える
6

他の人に役立つ場合は、Duncan Smart からの回答を使用して、PEM 形式でテスト証明書を生成する必要がありました (crt ファイルとキーファイルが必要でした)。次のように作成しました...

public static void MakeCert(string certFilename, string keyFilename)
{
    const string CRT_HEADER = "-----BEGIN CERTIFICATE-----\n";
    const string CRT_FOOTER = "\n-----END CERTIFICATE-----";

    const string KEY_HEADER = "-----BEGIN RSA PRIVATE KEY-----\n";
    const string KEY_FOOTER = "\n-----END RSA PRIVATE KEY-----";

    using var rsa = RSA.Create();
    var certRequest = new CertificateRequest("cn=test", rsa, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);

    // We're just going to create a temporary certificate, that won't be valid for long
    var certificate = certRequest.CreateSelfSigned(DateTimeOffset.Now, DateTimeOffset.Now.AddDays(1));

    // export the private key
    var privateKey = Convert.ToBase64String(rsa.ExportRSAPrivateKey(), Base64FormattingOptions.InsertLineBreaks);

    File.WriteAllText(keyFilename, KEY_HEADER + privateKey + KEY_FOOTER);

    // Export the certificate
    var exportData = certificate.Export(X509ContentType.Cert);

    var crt = Convert.ToBase64String(exportData, Base64FormattingOptions.InsertLineBreaks);
    File.WriteAllText(certFilename, CRT_HEADER + crt + CRT_FOOTER);
}
于 2020-08-24T13:02:17.360 に答える