'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.