var fDesc=new Array();
fDesc[0] = "The PKI Interoperability Test Tool (PITT) is a utility intended for PKI integrators. It allows inspection and troubleshooting of certification path processing for a given PKI using both PKIF and Microsoft CAPI. It’s especially useful for identifying a portion of your PKI that may be causing performance problems.
Features
- Highly configurable PKI settings
- Store certificates and settings in project files
- Check availability and performance of URIs in certificate extensions
- Discover and display information about certification paths using both PKIF and CAPI
- Show all discoverable paths for a particular certificate
- Export certificates and revocation data used to make a path processing determination
- Build and validate all CA paths reachable in a machine’s certificate stores
- Entry of user-specified inputs to the RFC 5280 path processing algorithm";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}