Package org.bouncycastle.crypto.tls
Class OCSPStatusRequest
- java.lang.Object
-
- org.bouncycastle.crypto.tls.OCSPStatusRequest
-
public class OCSPStatusRequest extends java.lang.ObjectDeprecated.Migrate to the (D)TLS API in org.bouncycastle.tls (bctls jar).RFC 3546 3.6
-
-
Field Summary
Fields Modifier and Type Field Description protected ExtensionsrequestExtensionsDeprecated.protected java.util.VectorresponderIDListDeprecated.
-
Constructor Summary
Constructors Constructor Description OCSPStatusRequest(java.util.Vector responderIDList, Extensions requestExtensions)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidencode(java.io.OutputStream output)Deprecated.Encode thisOCSPStatusRequestto anOutputStream.ExtensionsgetRequestExtensions()Deprecated.java.util.VectorgetResponderIDList()Deprecated.static OCSPStatusRequestparse(java.io.InputStream input)Deprecated.Parse anOCSPStatusRequestfrom anInputStream.
-
-
-
Field Detail
-
responderIDList
protected java.util.Vector responderIDList
Deprecated.
-
requestExtensions
protected Extensions requestExtensions
Deprecated.
-
-
Constructor Detail
-
OCSPStatusRequest
public OCSPStatusRequest(java.util.Vector responderIDList, Extensions requestExtensions)Deprecated.- Parameters:
responderIDList- aVectorofResponderID, specifying the list of trusted OCSP responders. An empty list has the special meaning that the responders are implicitly known to the server - e.g., by prior arrangement.requestExtensions- OCSP request extensions. A null value means that there are no extensions.
-
-
Method Detail
-
getResponderIDList
public java.util.Vector getResponderIDList()
Deprecated.- Returns:
- a
VectorofResponderID
-
getRequestExtensions
public Extensions getRequestExtensions()
Deprecated.- Returns:
- OCSP request extensions
-
encode
public void encode(java.io.OutputStream output) throws java.io.IOExceptionDeprecated.Encode thisOCSPStatusRequestto anOutputStream.- Parameters:
output- theOutputStreamto encode to.- Throws:
java.io.IOException
-
parse
public static OCSPStatusRequest parse(java.io.InputStream input) throws java.io.IOException
Deprecated.Parse anOCSPStatusRequestfrom anInputStream.- Parameters:
input- theInputStreamto parse from.- Returns:
- an
OCSPStatusRequestobject. - Throws:
java.io.IOException
-
-