web-dev-qa-db-ja.com

C#を使用して自己署名証明書を作成する方法は?

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

P/InvokeCrypt32.dll を使用する実装を見てきましたが、それらは複雑であり、パラメータを更新するのが難しいです-そして、Pも避けたいです/可能な場合は呼び出します。

クロスプラットフォームの何かは必要ありません。Windowsでのみ実行すれば十分です。

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

52
Guss

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

以下の例は非常に単純です(ここで行われる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のスタンドアロンです。Monoの残りを実行する必要がなく、準拠する.Net環境(Microsoftの実装など)で使用できます。

66
Guss

.NET 4.7.2以降では、 System.Security.Cryptography.X509Certificates.CertificateRequest を使用して自己署名証明書を作成できます。

例えば:

using System;
using System.IO;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;

public class CertificateUtil
{
    static void MakeCert()
    {
        var ecdsa = ECDsa.Create(); // generate asymmetric key pair
        var req = new CertificateRequest("cn=foobar", ecdsa, HashAlgorithmName.SHA256);
        var cert = req.CreateSelfSigned(DateTimeOffset.Now, DateTimeOffset.Now.AddYears(5));

        // Create PFX (PKCS #12) with private key
        File.WriteAllBytes("c:\\temp\\mycert.pfx", cert.Export(X509ContentType.Pfx, "P@55w0rd"));

        // Create Base 64 encoded CER (public key only)
        File.WriteAllText("c:\\temp\\mycert.cer",
            "-----BEGIN CERTIFICATE-----\r\n"
            + Convert.ToBase64String(cert.Export(X509ContentType.Cert), Base64FormattingOptions.InsertLineBreaks)
            + "\r\n-----END CERTIFICATE-----");
    }
}
31
Duncan Smart

別のオプションは、CodePlexの CLR Security extensions library を使用することです。これは、自己署名x509証明書を生成するヘルパー関数を実装します。

X509Certificate2 cert = CngKey.CreateSelfSignedCertificate(subjectName);

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

17
dthorpe

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

    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以降が必要です。

9
dthorpe

これは、証明書の作成方法に関するPowershellバージョンです。コマンドを実行して使用できます。チェック https://technet.Microsoft.com/itpro/powershell/windows/pkiclient/new-selfsignedcertificate

編集:証明書を作成した後、Windowsの「コンピューター証明書の管理」プログラムを使用して、証明書を.CERまたは他のタイプにエクスポートできることを忘れていました。

0
Roger Deep