Interface ITimeStampRequest
-
- All Known Implementing Classes:
TimeStampRequestBC
public interface ITimeStampRequest
This interface represents the wrapper for TimeStampRequest 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 byte[]
getEncoded()
Calls actualgetEncoded
method for wrapped TimeStampRequest object.java.math.BigInteger
getNonce()
Calls actualgetNonce
method for wrapped TimeStampRequest object.
-
-
-
Method Detail
-
getEncoded
byte[] getEncoded() throws java.io.IOException
Calls actualgetEncoded
method for wrapped TimeStampRequest object.- Returns:
- the default encoding for the wrapped object.
- Throws:
java.io.IOException
- on encoding error.
-
getNonce
java.math.BigInteger getNonce()
Calls actualgetNonce
method for wrapped TimeStampRequest object.- Returns:
- nonce value.
-
-