Interface IASN1Dump
-
- All Known Implementing Classes:
ASN1DumpBC
public interface IASN1DumpThis interface represents the wrapper for ASN1Dump that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringdumpAsString(java.lang.Object obj)Calls actualdumpAsStringmethod for the wrapped ASN1Dump object.java.lang.StringdumpAsString(java.lang.Object obj, boolean b)Calls actualdumpAsStringmethod for the wrapped ASN1Dump object.
-
-
-
Method Detail
-
dumpAsString
java.lang.String dumpAsString(java.lang.Object obj, boolean b)Calls actualdumpAsStringmethod for the wrapped ASN1Dump object.- Parameters:
obj- the ASN1Primitive (or its wrapper) to be dumped outb- if true, dump out the contents of octet and bit strings- Returns:
- the resulting string.
-
dumpAsString
java.lang.String dumpAsString(java.lang.Object obj)
Calls actualdumpAsStringmethod for the wrapped ASN1Dump object.- Parameters:
obj- the ASN1Primitive (or its wrapper) to be dumped out- Returns:
- the resulting string.
-
-