Classic ASP
Classic ASP
Get Certificate Policy
See more Certificates Examples
Demonstrates how to get a certificate's policy OIDs (if any)Chilkat Classic ASP Downloads
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0
set cert = Server.CreateObject("Chilkat.Cert")
success = cert.LoadFromFile("qa_data/certs/sample.cer")
If (success = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( cert.LastErrorText) & "</pre>"
Response.End
End If
' The certificatePolicies OID is 2.5.29.32
oid = "2.5.29.32"
strXml = cert.GetExtensionAsXml(oid)
If (cert.LastMethodSuccess = 1) Then
Response.Write "<pre>" & Server.HTMLEncode( strXml) & "</pre>"
' Sample result:
' <sequence><sequence><oid>2.16.840.1.101.2.1.11.39</oid></sequence></sequence>
set xml = Server.CreateObject("Chilkat.Xml")
success = xml.LoadXml(strXml)
Response.Write "<pre>" & Server.HTMLEncode( "Policy OID = " & xml.GetChildContent("sequence|oid")) & "</pre>"
End If
%>
</body>
</html>