Creates the certificate from a DER/PEM file

Namespace: LLCryptoLib.Security.Certificates
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public static LLCertificate CreateCertificate(
	string path,
	CertificateFormat format
)
Visual Basic
Public Shared Function CreateCertificate ( _
	path As String, _
	format As CertificateFormat _
) As LLCertificate
Visual C++
public:
static LLCertificate^ CreateCertificate(
	String^ path, 
	CertificateFormat format
)

Parameters

path
Type: System..::..String
The path of DER/PER file.
format
Type: LLCryptoLib.Security.Certificates..::..CertificateFormat
The certificate format as in CertificateFormat

Return Value

A newly created LLCertificate object

See Also