CertificateRequest コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
CertificateRequest(X500DistinguishedName, ECDsa, HashAlgorithmName) |
指定されたサブジェクト名、ECDSA キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。 |
CertificateRequest(X500DistinguishedName, PublicKey, HashAlgorithmName) |
指定されたサブジェクト名、エンコードされたパブリック キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。 |
CertificateRequest(String, ECDsa, HashAlgorithmName) |
指定されたサブジェクト名、ECDSA キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。 |
CertificateRequest(X500DistinguishedName, RSA, HashAlgorithmName, RSASignaturePadding) |
指定されたサブジェクト名、RSA キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。 |
CertificateRequest(X500DistinguishedName, PublicKey, HashAlgorithmName, RSASignaturePadding) |
指定したサブジェクト名、エンコードされた公開キー、ハッシュ アルゴリズム、RSA 署名パディングの CertificateRequest を作成します。 |
CertificateRequest(String, RSA, HashAlgorithmName, RSASignaturePadding) |
指定されたサブジェクト名、RSA キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。 |
CertificateRequest(X500DistinguishedName, ECDsa, HashAlgorithmName)
指定されたサブジェクト名、ECDSA キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。
public:
CertificateRequest(System::Security::Cryptography::X509Certificates::X500DistinguishedName ^ subjectName, System::Security::Cryptography::ECDsa ^ key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public CertificateRequest (System.Security.Cryptography.X509Certificates.X500DistinguishedName subjectName, System.Security.Cryptography.ECDsa key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
new System.Security.Cryptography.X509Certificates.CertificateRequest : System.Security.Cryptography.X509Certificates.X500DistinguishedName * System.Security.Cryptography.ECDsa * System.Security.Cryptography.HashAlgorithmName -> System.Security.Cryptography.X509Certificates.CertificateRequest
Public Sub New (subjectName As X500DistinguishedName, key As ECDsa, hashAlgorithm As HashAlgorithmName)
パラメーター
- subjectName
- X500DistinguishedName
証明書または証明書要求のサブジェクト名の解析された表現。
- key
- ECDsa
証明書または証明書要求に公開キー マテリアルが含まれる ECDSA キー。 CreateSelfSigned(DateTimeOffset, DateTimeOffset) メソッドが呼び出される場合、このキーは秘密キーとして使われます。
- hashAlgorithm
- HashAlgorithmName
証明書または証明書要求に署名するときに使用するハッシュ アルゴリズム。
例外
適用対象
CertificateRequest(X500DistinguishedName, PublicKey, HashAlgorithmName)
指定されたサブジェクト名、エンコードされたパブリック キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。
public:
CertificateRequest(System::Security::Cryptography::X509Certificates::X500DistinguishedName ^ subjectName, System::Security::Cryptography::X509Certificates::PublicKey ^ publicKey, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public CertificateRequest (System.Security.Cryptography.X509Certificates.X500DistinguishedName subjectName, System.Security.Cryptography.X509Certificates.PublicKey publicKey, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
new System.Security.Cryptography.X509Certificates.CertificateRequest : System.Security.Cryptography.X509Certificates.X500DistinguishedName * System.Security.Cryptography.X509Certificates.PublicKey * System.Security.Cryptography.HashAlgorithmName -> System.Security.Cryptography.X509Certificates.CertificateRequest
Public Sub New (subjectName As X500DistinguishedName, publicKey As PublicKey, hashAlgorithm As HashAlgorithmName)
パラメーター
- subjectName
- X500DistinguishedName
証明書または証明書要求のサブジェクト名の解析された表現。
- publicKey
- PublicKey
証明書または証明書要求に含まれるパブリック キーのエンコードされた表現。
- hashAlgorithm
- HashAlgorithmName
証明書または証明書要求に署名するときに使用するハッシュ アルゴリズム。
例外
適用対象
CertificateRequest(String, ECDsa, HashAlgorithmName)
指定されたサブジェクト名、ECDSA キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。
public:
CertificateRequest(System::String ^ subjectName, System::Security::Cryptography::ECDsa ^ key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public CertificateRequest (string subjectName, System.Security.Cryptography.ECDsa key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
new System.Security.Cryptography.X509Certificates.CertificateRequest : string * System.Security.Cryptography.ECDsa * System.Security.Cryptography.HashAlgorithmName -> System.Security.Cryptography.X509Certificates.CertificateRequest
Public Sub New (subjectName As String, key As ECDsa, hashAlgorithm As HashAlgorithmName)
パラメーター
- subjectName
- String
証明書または証明書要求のサブジェクト名の文字列表現。
- key
- ECDsa
証明書または証明書要求に公開キー マテリアルが含まれる ECDSA キー。 CreateSelfSigned(DateTimeOffset, DateTimeOffset) メソッドが呼び出される場合、このキーは秘密キーとして使われます。
- hashAlgorithm
- HashAlgorithmName
証明書または証明書要求に署名するときに使用するハッシュ アルゴリズム。
例外
こちらもご覧ください
適用対象
CertificateRequest(X500DistinguishedName, RSA, HashAlgorithmName, RSASignaturePadding)
指定されたサブジェクト名、RSA キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。
public:
CertificateRequest(System::Security::Cryptography::X509Certificates::X500DistinguishedName ^ subjectName, System::Security::Cryptography::RSA ^ key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::RSASignaturePadding ^ padding);
public CertificateRequest (System.Security.Cryptography.X509Certificates.X500DistinguishedName subjectName, System.Security.Cryptography.RSA key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding);
new System.Security.Cryptography.X509Certificates.CertificateRequest : System.Security.Cryptography.X509Certificates.X500DistinguishedName * System.Security.Cryptography.RSA * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.RSASignaturePadding -> System.Security.Cryptography.X509Certificates.CertificateRequest
Public Sub New (subjectName As X500DistinguishedName, key As RSA, hashAlgorithm As HashAlgorithmName, padding As RSASignaturePadding)
パラメーター
- subjectName
- X500DistinguishedName
証明書または証明書要求のサブジェクト名の解析された表現。
- key
- RSA
証明書または証明書要求に公開キー マテリアルが含まれる RSA キー。 CreateSelfSigned(DateTimeOffset, DateTimeOffset) メソッドが呼び出される場合、このキーは秘密キーとして使われます。
- hashAlgorithm
- HashAlgorithmName
証明書または証明書要求に署名するときに使用するハッシュ アルゴリズム。
- padding
- RSASignaturePadding
自己署名または X509Certificate2 で署名されている場合に適用する RSA 署名埋め込み。
例外
適用対象
CertificateRequest(X500DistinguishedName, PublicKey, HashAlgorithmName, RSASignaturePadding)
指定したサブジェクト名、エンコードされた公開キー、ハッシュ アルゴリズム、RSA 署名パディングの CertificateRequest を作成します。
public CertificateRequest (System.Security.Cryptography.X509Certificates.X500DistinguishedName subjectName, System.Security.Cryptography.X509Certificates.PublicKey publicKey, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding? rsaSignaturePadding = default);
new System.Security.Cryptography.X509Certificates.CertificateRequest : System.Security.Cryptography.X509Certificates.X500DistinguishedName * System.Security.Cryptography.X509Certificates.PublicKey * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.RSASignaturePadding -> System.Security.Cryptography.X509Certificates.CertificateRequest
Public Sub New (subjectName As X500DistinguishedName, publicKey As PublicKey, hashAlgorithm As HashAlgorithmName, Optional rsaSignaturePadding As RSASignaturePadding = Nothing)
パラメーター
- subjectName
- X500DistinguishedName
証明書または証明書要求のサブジェクト名の解析された表現。
- publicKey
- PublicKey
証明書または証明書要求に含まれるパブリック キーのエンコードされた表現。
- hashAlgorithm
- HashAlgorithmName
証明書または証明書要求に署名するときに使用するハッシュ アルゴリズム。
- rsaSignaturePadding
- RSASignaturePadding
RSA 証明書を使用してこの要求に署名するときに使用する RSA 署名パディング。
適用対象
CertificateRequest(String, RSA, HashAlgorithmName, RSASignaturePadding)
指定されたサブジェクト名、RSA キー、およびハッシュ アルゴリズムを使って、CertificateRequest クラスの新しいインスタンスを初期化します。
public:
CertificateRequest(System::String ^ subjectName, System::Security::Cryptography::RSA ^ key, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::RSASignaturePadding ^ padding);
public CertificateRequest (string subjectName, System.Security.Cryptography.RSA key, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.RSASignaturePadding padding);
new System.Security.Cryptography.X509Certificates.CertificateRequest : string * System.Security.Cryptography.RSA * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.RSASignaturePadding -> System.Security.Cryptography.X509Certificates.CertificateRequest
Public Sub New (subjectName As String, key As RSA, hashAlgorithm As HashAlgorithmName, padding As RSASignaturePadding)
パラメーター
- subjectName
- String
証明書または証明書要求のサブジェクト名の文字列表現。
- key
- RSA
証明書または証明書要求に公開キー マテリアルが含まれる RSA キー。 CreateSelfSigned(DateTimeOffset, DateTimeOffset) メソッドが呼び出される場合、このキーは秘密キーとして使われます。
- hashAlgorithm
- HashAlgorithmName
証明書または証明書要求に署名するときに使用するハッシュ アルゴリズム。
- padding
- RSASignaturePadding
自己署名または X509Certificate2 で署名されている場合に適用する RSA 署名埋め込み。
例外
こちらもご覧ください
適用対象
.NET