共用方式為


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 編碼值。

備註

不會進行驗證, encodedCertificate 以確保所指出 certificateType的值正確無誤。

請注意,對於 X.509 公鑰憑證,CertBag 值的正確編碼方式是將 DER 編碼的憑證包裝在 OCTET STRING 中。

適用於