Opc.Ua.Security.Certificates
CreateCertificateFromPKCS12 Method (X509PfxUtils)



Opc.Ua.Security.Certificates Namespace > X509PfxUtils Class : CreateCertificateFromPKCS12 Method
The raw PKCS #12 store data.
The password to use to access the store.
Set to true if the key should not use the ephemeral key set.
Creates a certificate from a PKCS #12 store with a private key.
Syntax
'Declaration
 
Public Shared Function CreateCertificateFromPKCS12( _
   ByVal rawData() As Byte, _
   ByVal password As String, _
   Optional ByVal noEphemeralKeySet As Boolean _
) As X509Certificate2
'Usage
 
Dim rawData() As Byte
Dim password As String
Dim noEphemeralKeySet As Boolean
Dim value As X509Certificate2
 
value = X509PfxUtils.CreateCertificateFromPKCS12(rawData, password, noEphemeralKeySet)
public static X509Certificate2 CreateCertificateFromPKCS12( 
   byte[] rawData,
   string password,
   bool noEphemeralKeySet
)
public:
static X509Certificate2^ CreateCertificateFromPKCS12( 
   array<byte>^ rawData,
   String^ password,
   bool noEphemeralKeySet
) 

Parameters

rawData
The raw PKCS #12 store data.
password
The password to use to access the store.
noEphemeralKeySet
Set to true if the key should not use the ephemeral key set.

Return Value

The certificate with a private key.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

X509PfxUtils Class
X509PfxUtils Members