buf.append(" userCertificate: " + this.getSerialNumber() + nl);
buf.append(" revocationDate: " + this.getRevocationDate() + nl);
X509Extensions extensions = c.getExtensions();
if ( extensions != null )
{
Enumeration e = extensions.oids();
if ( e.hasMoreElements() )
{
buf.append(" crlEntryExtensions:" + nl);
while ( e.hasMoreElements() )
{
DERObjectIdentifier oid = (DERObjectIdentifier)e.nextElement();
X509Extension ext = extensions.getExtension(oid);
buf.append(ext);
}
}
}