私は、ローカルシステムアカウントの下でWindowsサービスとして実行している自己ホストWCFサーバーを持っています。私はメッセージレベルのセキュリティを使用してnet.tcpエンドポイントで使用するためにC#でプログラムで自己署名入りの証明書を作成しようとしています。WCFサービス用にプログラムで自己署名証明書を作成する方法
私は、問題を解決しようとしている小さな変更を加えて、How to create a self-signed certificate using C#?の受け入れられた回答に非常に密接に基づいている次のコードを使用しています。
public static X509Certificate2 CreateSelfSignedCertificate(string subjectName, TimeSpan expirationLength)
{
// create DN for subject and issuer
var dn = new CX500DistinguishedName();
dn.Encode("CN=" + subjectName, X500NameFlags.XCN_CERT_NAME_STR_NONE);
CX509PrivateKey privateKey = new CX509PrivateKey();
privateKey.ProviderName = "Microsoft Strong Cryptographic Provider";
privateKey.Length = 1024;
privateKey.KeySpec = X509KeySpec.XCN_AT_KEYEXCHANGE;
privateKey.KeyUsage = X509PrivateKeyUsageFlags.XCN_NCRYPT_ALLOW_DECRYPT_FLAG | X509PrivateKeyUsageFlags.XCN_NCRYPT_ALLOW_KEY_AGREEMENT_FLAG;
privateKey.MachineContext = true;
privateKey.ExportPolicy = X509PrivateKeyExportFlags.XCN_NCRYPT_ALLOW_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, "SHA1");
// 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.Date;
// this cert expires immediately. Change to whatever makes sense for you
cert.NotAfter = cert.NotBefore + expirationLength;
//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)
// mark private key to go into the Machine store instead of the current users store
X509KeyStorageFlags.Exportable | X509KeyStorageFlags.MachineKeySet
);
}
そして、私はこのコードでそれを格納します。
X509Store store = new X509Store(storeName, StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadWrite);
store.Add(newCert);
store.Close();
これは、証明書を作成し、LOCALMACHINE証明書ストアに入れます。問題は、WCFサービスを開始しようとすると、次の例外が発生することです。
証明書 'CN = myCertificate'は、鍵交換が可能な秘密鍵を持っていない可能性があります。秘密鍵のアクセス権。詳細については内部例外を参照してください。 内部例外:キーセットは
存在しません、私の証明書のFindPrivateKeyサンプル(http://msdn.microsoft.com/en-us/library/aa717039%28v=vs.100%29.aspx)の出力は次のとおりです。
Private key directory:
C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys
Private key file name:
f0d47c7826b8ef5148b6d412f1c40024_4a8a026f-58e4-40f7-b779-3ae9b6aae1a7
私はエクスプローラで、この1.43キロバイトのファイルを見ることができます。プロパティ|セキュリティを見ると、フルコントロールのシステムと管理者の両方が表示されます。
私はこのエラーを調べる際に、プライベートキーの不足または不正なアクセス許可に関する多くの回答を見てきました。私は問題が何かを見ることができません。
本当に変わったことは、mmc証明書プラグインを使用する場合は、証明書に移動して[すべてのタスク|管理秘密鍵...]と同じセキュリティ設定が表示されることです。このダイアログを表示してキャンセルボタンを押すだけで、証明書がWCFで正しく動作するようになりました。サービスを再開するだけで、すべてが完璧に動作します。
MakeCertを使用して証明書を作成すると、最初からうまく動作します。私はそれが何をしているのか分かりません。適切ではないかもしれません情報の
もう一つの作品は、私が入れ得るためにそれを話したところ、証明書だけでなく、マイストアに入れますが、それはまた、「中間証明機関」ストアに入れてしまうことです。なぜか、それが重要かどうかわかりません。
だから私は間違っていますか?
更新:これは単なるWCFの問題ではありません。 HttpSetServiceConfigurationを使用してhttp.sysでエンドポイントにバインドするために証明書を使用しようとすると、私は本質的に同じ問題を抱えます。このメソッドは、1312 - 「指定されたログオンセッションは存在しません。すでに終了している可能性があります。これは実際には実際のエラーではありません。セキュリティイベントログに、次のような監査失敗があります。
Cryptographic Parameters:
Provider Name: Microsoft Software Key Storage Provider
Algorithm Name: Not Available.
Key Name: {A23712D0-9A7B-4377-89DB-B1B39E3DA8B5}
Key Type: Machine key.
Cryptographic Operation:
Operation: Open Key.
Return Code: 0x80090011
0x80090011 isオブジェクトが見つかりませんでした。したがって、これは同じ問題であるように見えます。ここでも、証明書の[秘密鍵の管理]ダイアログを開いた後、これも完全に機能します。
私はまだ問題の原因を探しています。
更新#2:私は以下の受け入れられた回答を使用してこれを動作させることができました。興味深いことに、このコードはX509Storeコードを呼び出さずに証明書をMachineストアに置くように見えます。私はまだコードを呼んでいます。なぜなら、わからないし、何も傷つけないからです。ここでは、証明書を作成するために使用している最終的なコードです。
static public X509Certificate2 CreateSelfSignedCertificate(string subjectName, TimeSpan expirationLength)
{
// create DN for subject and issuer
var dn = new CX500DistinguishedName();
dn.Encode("CN=" + subjectName, X500NameFlags.XCN_CERT_NAME_STR_NONE);
CX509PrivateKey privateKey = new CX509PrivateKey();
privateKey.ProviderName = "Microsoft Strong Cryptographic Provider";
privateKey.Length = 2048;
privateKey.KeySpec = X509KeySpec.XCN_AT_KEYEXCHANGE;
privateKey.KeyUsage = X509PrivateKeyUsageFlags.XCN_NCRYPT_ALLOW_DECRYPT_FLAG | X509PrivateKeyUsageFlags.XCN_NCRYPT_ALLOW_KEY_AGREEMENT_FLAG;
privateKey.MachineContext = true;
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");
// 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.Date;
// this cert expires immediately. Change to whatever makes sense for you
cert.NotAfter = cert.NotBefore + expirationLength;
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)
// mark private key to go into the Machine store instead of the current users store
X509KeyStorageFlags.Exportable | X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.PersistKeySet
);
}
フレンドリーネームで既存の証明書を読み込む方法を知っている人はいますか? –
アップデートを提供していただきありがとうございます。私は同様の問題があり、私が間違っていたことを特定できませんでした。 :) – Spyral