package org.bouncycastle.asn1.util;

import org.bouncycastle.asn1.DEREncodable;
import org.bouncycastle.asn1.DERObject;

Deprecated:use ASN1Dump.
/** * @deprecated use ASN1Dump. */
public class DERDump extends ASN1Dump {
dump out a DER object as a formatted string
Params:
  • obj – the DERObject to be dumped out.
/** * 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
Params:
  • obj – the DERObject to be dumped out.
/** * 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(); } }