Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Load Certificate from .cer, .p7b, or .der File VB.NET example program to load a certificate from a file. ' Load a digital certificate from a .cer file.
' Also supports loading from .p7b or .der files.
Dim cert As New Chilkat.Cert()
Dim success As Boolean
success = cert.LoadFromFile("myCert.cer")
If Not success Then
MsgBox(cert.LastErrorText)
Else
MsgBox("Loaded " & cert.SubjectDN)
End If
Important: The download for this
example does not contain the ChilkatDotNet.dll which |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2007 Chilkat Software, Inc. All Rights Reserved.