次の方法で共有


Pkcs12CertBag(Oid, ReadOnlyMemory<Byte>) コンストラクター

定義

指定した証明書の種類とエンコードを使って、Pkcs12CertBag クラスの新しいインスタンスを初期化します。

public:
 Pkcs12CertBag(System::Security::Cryptography::Oid ^ certificateType, ReadOnlyMemory<System::Byte> encodedCertificate);
public Pkcs12CertBag (System.Security.Cryptography.Oid certificateType, ReadOnlyMemory<byte> encodedCertificate);
new System.Security.Cryptography.Pkcs.Pkcs12CertBag : System.Security.Cryptography.Oid * ReadOnlyMemory<byte> -> System.Security.Cryptography.Pkcs.Pkcs12CertBag
Public Sub New (certificateType As Oid, encodedCertificate As ReadOnlyMemory(Of Byte))

パラメーター

certificateType
Oid

証明書の種類のオブジェクト識別子 (OID) です。

encodedCertificate
ReadOnlyMemory<Byte>

エンコードされた証明書の値です。

例外

certificateType パラメーターが null です。

encodedCertificate パラメーターが、ASN.1 BER でエンコードされた 1 つの値を表していません。

注釈

指定された certificateTypeに対して値が正しいことをencodedCertificate確認するための検証は行われません。

X.509 公開キー証明書の場合、CertBag 値の正しいエンコードは、DER でエンコードされた証明書を OCTET 文字列でラップすることです。

適用対象