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 Certificate StoreThis ASP script shows how to list the certificates in the registry-based local machine certificate store. <html>
<head>
<title>List the Local Machine Certificates</title>
</head>
<body>
<%
' ASP script to list certificates in the local machine registry-based certificate store.
set ccs = Server.CreateObject("Chilkat.CreateCS")
' Open the local machine certificate store.
set certStore = ccs.OpenLocalSystemStore()
' Iterate over the certificates
for i = 0 to certStore.NumCertificates - 1
set cert = certStore.GetCertificate(i)
Response.write cert.SubjectDN & "<br><br>"
next
%>
</body>
</html>
|
© 2000-2012 Chilkat Software, Inc. All Rights Reserved.