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
List Certificates in Local Machine StoreList the certificates in the local machine certificate store.
set ccs = CreateObject("Chilkat.CreateCS")
' Open the local machine certificate store
set certStore = ccs.OpenLocalSystemStore()
numCerts = certStore.NumCertificates
certTxt = ""
for idx = 0 to numCerts-1
set cert = certStore.GetCertificate(idx)
certTxt = certTxt + "[" + cert.SubjectE + "]" + vbCrLf
next
MsgBox certTxt
certTxt = ""
for idx = 0 to numCerts-1
set cert = certStore.GetCertificate(idx)
certTxt = certTxt + "[" + cert.SubjectDN + "]" + vbCrLf
next
MsgBox certTxt
|
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.