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 bcutil-jdk18on Show documentation
Show all versions of bcutil-jdk18on Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.8 and up.
package org.bouncycastle.asn1.mozilla;
import org.bouncycastle.asn1.ASN1IA5String;
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 ASN1IA5String 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 = ASN1IA5String.getInstance(seq.getObjectAt(1));
}
public ASN1Primitive toASN1Primitive()
{
return pkacSeq;
}
public SubjectPublicKeyInfo getSubjectPublicKeyInfo()
{
return spki;
}
/**
* @deprecated Use {@link #getChallengeIA5()} instead.
*/
public DERIA5String getChallenge()
{
return null == challenge || challenge instanceof DERIA5String
? (DERIA5String)challenge
: new DERIA5String(challenge.getString(), false);
}
public ASN1IA5String getChallengeIA5()
{
return challenge;
}
}