![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.org.bouncycastle.asn1.pkcs.RC2CBCParameter 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.pkcs;
import java.math.BigInteger;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DEROctetString;
import org.bouncycastle.asn1.DERSequence;
public class RC2CBCParameter
extends ASN1Object
{
ASN1Integer version;
ASN1OctetString iv;
public static RC2CBCParameter getInstance(
Object o)
{
if (o instanceof RC2CBCParameter)
{
return (RC2CBCParameter)o;
}
if (o != null)
{
return new RC2CBCParameter(ASN1Sequence.getInstance(o));
}
return null;
}
public RC2CBCParameter(
byte[] iv)
{
this.version = null;
this.iv = new DEROctetString(iv);
}
public RC2CBCParameter(
int parameterVersion,
byte[] iv)
{
this.version = new ASN1Integer(parameterVersion);
this.iv = new DEROctetString(iv);
}
private RC2CBCParameter(
ASN1Sequence seq)
{
if (seq.size() == 1)
{
version = null;
iv = (ASN1OctetString)seq.getObjectAt(0);
}
else
{
version = (ASN1Integer)seq.getObjectAt(0);
iv = (ASN1OctetString)seq.getObjectAt(1);
}
}
public BigInteger getRC2ParameterVersion()
{
if (version == null)
{
return null;
}
return version.getValue();
}
public byte[] getIV()
{
return iv.getOctets();
}
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
if (version != null)
{
v.add(version);
}
v.add(iv);
return new DERSequence(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy