nl.open.jwtdependency.org.bouncycastle.asn1.mozilla.PublicKeyAndChallenge 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.mozilla;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERIA5String;
import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo;
/**
* This is designed to parse
* the PublicKeyAndChallenge created by the KEYGEN tag included by
* Mozilla based browsers.
*
* PublicKeyAndChallenge ::= SEQUENCE {
* spki SubjectPublicKeyInfo,
* challenge IA5STRING
* }
*
*
*/
public class PublicKeyAndChallenge
extends ASN1Object
{
private ASN1Sequence pkacSeq;
private SubjectPublicKeyInfo spki;
private DERIA5String challenge;
public static PublicKeyAndChallenge getInstance(Object obj)
{
if (obj instanceof PublicKeyAndChallenge)
{
return (PublicKeyAndChallenge)obj;
}
else if (obj != null)
{
return new PublicKeyAndChallenge(ASN1Sequence.getInstance(obj));
}
return null;
}
private PublicKeyAndChallenge(ASN1Sequence seq)
{
pkacSeq = seq;
spki = SubjectPublicKeyInfo.getInstance(seq.getObjectAt(0));
challenge = DERIA5String.getInstance(seq.getObjectAt(1));
}
public ASN1Primitive toASN1Primitive()
{
return pkacSeq;
}
public SubjectPublicKeyInfo getSubjectPublicKeyInfo()
{
return spki;
}
public DERIA5String getChallenge()
{
return challenge;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy