次の方法で共有


X509AuthorityKeyIdentifierExtension.Create メソッド

定義

オーバーロード

Create(Byte[], X500DistinguishedName, Byte[])

X509AuthorityKeyIdentifierExtension指定されたキー識別子、発行者名、シリアル番号を指定する を作成します。

Create(ReadOnlySpan<Byte>, X500DistinguishedName, ReadOnlySpan<Byte>)

X509AuthorityKeyIdentifierExtension指定されたキー識別子、発行者名、シリアル番号を指定する を作成します。

Create(Byte[], X500DistinguishedName, Byte[])

ソース:
X509AuthorityKeyIdentifierExtension.cs
ソース:
X509AuthorityKeyIdentifierExtension.cs
ソース:
X509AuthorityKeyIdentifierExtension.cs

X509AuthorityKeyIdentifierExtension指定されたキー識別子、発行者名、シリアル番号を指定する を作成します。

public:
 static System::Security::Cryptography::X509Certificates::X509AuthorityKeyIdentifierExtension ^ Create(cli::array <System::Byte> ^ keyIdentifier, System::Security::Cryptography::X509Certificates::X500DistinguishedName ^ issuerName, cli::array <System::Byte> ^ serialNumber);
public static System.Security.Cryptography.X509Certificates.X509AuthorityKeyIdentifierExtension Create (byte[] keyIdentifier, System.Security.Cryptography.X509Certificates.X500DistinguishedName issuerName, byte[] serialNumber);
static member Create : byte[] * System.Security.Cryptography.X509Certificates.X500DistinguishedName * byte[] -> System.Security.Cryptography.X509Certificates.X509AuthorityKeyIdentifierExtension
Public Shared Function Create (keyIdentifier As Byte(), issuerName As X500DistinguishedName, serialNumber As Byte()) As X509AuthorityKeyIdentifierExtension

パラメーター

keyIdentifier
Byte[]

この拡張機能に署名する証明機関 (CA) 証明書のサブジェクト キー識別子の値。

issuerName
X500DistinguishedName

この拡張機能に署名する証明機関 (CA) 証明書の発行者名の値。

serialNumber
Byte[]

この拡張機能に署名する証明機関 (CA) 証明書のシリアル番号の値。

戻り値

構成された拡張機能。

例外

keyIdentifierissuerName、または serialNumbernull です。

serialNumber は無効です。先頭の 9 ビットはすべて 0 またはすべて 1 であるためです。

適用対象

Create(ReadOnlySpan<Byte>, X500DistinguishedName, ReadOnlySpan<Byte>)

ソース:
X509AuthorityKeyIdentifierExtension.cs
ソース:
X509AuthorityKeyIdentifierExtension.cs
ソース:
X509AuthorityKeyIdentifierExtension.cs

X509AuthorityKeyIdentifierExtension指定されたキー識別子、発行者名、シリアル番号を指定する を作成します。

public:
 static System::Security::Cryptography::X509Certificates::X509AuthorityKeyIdentifierExtension ^ Create(ReadOnlySpan<System::Byte> keyIdentifier, System::Security::Cryptography::X509Certificates::X500DistinguishedName ^ issuerName, ReadOnlySpan<System::Byte> serialNumber);
public static System.Security.Cryptography.X509Certificates.X509AuthorityKeyIdentifierExtension Create (ReadOnlySpan<byte> keyIdentifier, System.Security.Cryptography.X509Certificates.X500DistinguishedName issuerName, ReadOnlySpan<byte> serialNumber);
static member Create : ReadOnlySpan<byte> * System.Security.Cryptography.X509Certificates.X500DistinguishedName * ReadOnlySpan<byte> -> System.Security.Cryptography.X509Certificates.X509AuthorityKeyIdentifierExtension
Public Shared Function Create (keyIdentifier As ReadOnlySpan(Of Byte), issuerName As X500DistinguishedName, serialNumber As ReadOnlySpan(Of Byte)) As X509AuthorityKeyIdentifierExtension

パラメーター

keyIdentifier
ReadOnlySpan<Byte>

この拡張機能に署名する証明機関 (CA) 証明書のサブジェクト キー識別子の値。

issuerName
X500DistinguishedName

この拡張機能に署名する証明機関 (CA) 証明書の発行者名の値。

serialNumber
ReadOnlySpan<Byte>

この拡張機能に署名する証明機関 (CA) 証明書のシリアル番号の値。

戻り値

構成された拡張機能。

例外

issuerNamenull です。

serialNumber は無効です。先頭の 9 ビットはすべて 0 またはすべて 1 であるためです。

適用対象