Interface IASN1Dump
-
- All Known Implementing Classes:
ASN1DumpBC
public interface IASN1Dump
This 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.String
dumpAsString(java.lang.Object obj)
Calls actualdumpAsString
method for the wrapped ASN1Dump object.java.lang.String
dumpAsString(java.lang.Object obj, boolean b)
Calls actualdumpAsString
method for the wrapped ASN1Dump object.
-
-
-
Method Detail
-
dumpAsString
java.lang.String dumpAsString(java.lang.Object obj, boolean b)
Calls actualdumpAsString
method 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 actualdumpAsString
method for the wrapped ASN1Dump object.- Parameters:
obj
- the ASN1Primitive (or its wrapper) to be dumped out- Returns:
- the resulting string.
-
-