org.bouncycastle.asn1.util.DERDump Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
package org.bouncycastle.asn1.util;
import org.bouncycastle.asn1.DEREncodable;
import org.bouncycastle.asn1.DERObject;
/**
* @deprecated use ASN1Dump.
*/
public class DERDump
extends ASN1Dump
{
/**
* dump out a DER object as a formatted string
*
* @param obj the DERObject to be dumped out.
*/
public static String dumpAsString(
DERObject obj)
{
StringBuffer buf = new StringBuffer();
_dumpAsString("", false, obj, buf);
return buf.toString();
}
/**
* dump out a DER object as a formatted string
*
* @param obj the DERObject to be dumped out.
*/
public static String dumpAsString(
DEREncodable obj)
{
StringBuffer buf = new StringBuffer();
_dumpAsString("", false, obj.getDERObject(), buf);
return buf.toString();
}
}