Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
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 |
© 2000-2012 Chilkat Software, Inc. All Rights Reserved.