Interface IOCSPReq
-
- All Known Implementing Classes:
OCSPReqBC
public interface IOCSPReq
This interface represents the wrapper for OCSPReq 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 the wrapped OCSPReq object.IExtension
getExtension(IASN1ObjectIdentifier objectIdentifier)
Calls actualgetExtension
method for the wrapped OCSPReq object.IReq[]
getRequestList()
Calls actualgetRequestList
method for the wrapped OCSPReq object.
-
-
-
Method Detail
-
getEncoded
byte[] getEncoded() throws java.io.IOException
Calls actualgetEncoded
method for the wrapped OCSPReq object.- Returns:
- the default encoding for the wrapped object.
- Throws:
java.io.IOException
- on encoding error.
-
getRequestList
IReq[] getRequestList()
Calls actualgetRequestList
method for the wrapped OCSPReq object.- Returns:
IReq
request wrappers list.
-
getExtension
IExtension getExtension(IASN1ObjectIdentifier objectIdentifier)
Calls actualgetExtension
method for the wrapped OCSPReq object.- Parameters:
objectIdentifier
- ASN1ObjectIdentifier wrapper- Returns:
IExtension
wrapper for received Extension.
-
-