![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.org.bouncycastle.asn1.ocsp.OCSPResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package org.bouncycastle.asn1.ocsp;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1TaggedObject;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.DERTaggedObject;
public class OCSPResponse
extends ASN1Object
{
OCSPResponseStatus responseStatus;
ResponseBytes responseBytes;
public OCSPResponse(
OCSPResponseStatus responseStatus,
ResponseBytes responseBytes)
{
this.responseStatus = responseStatus;
this.responseBytes = responseBytes;
}
private OCSPResponse(
ASN1Sequence seq)
{
responseStatus = OCSPResponseStatus.getInstance(seq.getObjectAt(0));
if (seq.size() == 2)
{
responseBytes = ResponseBytes.getInstance(
(ASN1TaggedObject)seq.getObjectAt(1), true);
}
}
public static OCSPResponse getInstance(
ASN1TaggedObject obj,
boolean explicit)
{
return getInstance(ASN1Sequence.getInstance(obj, explicit));
}
public static OCSPResponse getInstance(
Object obj)
{
if (obj instanceof OCSPResponse)
{
return (OCSPResponse)obj;
}
else if (obj != null)
{
return new OCSPResponse(ASN1Sequence.getInstance(obj));
}
return null;
}
public OCSPResponseStatus getResponseStatus()
{
return responseStatus;
}
public ResponseBytes getResponseBytes()
{
return responseBytes;
}
/**
* Produce an object suitable for an ASN1OutputStream.
*
* OCSPResponse ::= SEQUENCE {
* responseStatus OCSPResponseStatus,
* responseBytes [0] EXPLICIT ResponseBytes OPTIONAL }
*
*/
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
v.add(responseStatus);
if (responseBytes != null)
{
v.add(new DERTaggedObject(true, 0, responseBytes));
}
return new DERSequence(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy