Share via


X509AuthorityKeyIdentifierExtension.Create 메서드

정의

오버로드

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

X509AuthorityKeyIdentifierExtension 제공된 키 식별자, 발급자 이름 및 일련 번호를 지정하는 을 만듭니다.

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

X509AuthorityKeyIdentifierExtension 제공된 키 식별자, 발급자 이름 및 일련 번호를 지정하는 을 만듭니다.

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

Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
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(인증 기관) 인증서의 일련 번호 값입니다.

반환

구성된 확장입니다.

예외

keyIdentifier, issuerName 또는 serialNumbernull인 경우

serialNumber 앞에 오는 9비트 모두 0 또는 모두 이므로 유효하지 않습니다.

적용 대상

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

Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
X509AuthorityKeyIdentifierExtension.cs
Source:
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 또는 모두 이므로 유효하지 않습니다.

적용 대상