![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.org.bouncycastle.pqc.asn1.SPHINCS256KeyParams 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.pqc.asn1;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
public class SPHINCS256KeyParams
extends ASN1Object
{
private final ASN1Integer version;
private final AlgorithmIdentifier treeDigest;
public SPHINCS256KeyParams(AlgorithmIdentifier treeDigest)
{
this.version = new ASN1Integer(0);
this.treeDigest = treeDigest;
}
private SPHINCS256KeyParams(ASN1Sequence sequence)
{
this.version = ASN1Integer.getInstance(sequence.getObjectAt(0));
this.treeDigest = AlgorithmIdentifier.getInstance(sequence.getObjectAt(1));
}
public static final SPHINCS256KeyParams getInstance(Object o)
{
if (o instanceof SPHINCS256KeyParams)
{
return (SPHINCS256KeyParams)o;
}
else if (o != null)
{
return new SPHINCS256KeyParams(ASN1Sequence.getInstance(o));
}
return null;
}
public AlgorithmIdentifier getTreeDigest()
{
return treeDigest;
}
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
v.add(version);
v.add(treeDigest);
return new DERSequence(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy