org.spongycastle.cert.crmf.AuthenticatorControl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkix Show documentation
Show all versions of pkix Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.cert.crmf;
import org.spongycastle.asn1.ASN1Encodable;
import org.spongycastle.asn1.ASN1ObjectIdentifier;
import org.spongycastle.asn1.DERUTF8String;
import org.spongycastle.asn1.crmf.CRMFObjectIdentifiers;
/**
* Carrier for an authenticator control.
*/
public class AuthenticatorControl
implements Control
{
private static final ASN1ObjectIdentifier type = CRMFObjectIdentifiers.id_regCtrl_authenticator;
private final DERUTF8String token;
/**
* Basic constructor - build from a UTF-8 string representing the token.
*
* @param token UTF-8 string representing the token.
*/
public AuthenticatorControl(DERUTF8String token)
{
this.token = token;
}
/**
* Basic constructor - build from a string representing the token.
*
* @param token string representing the token.
*/
public AuthenticatorControl(String token)
{
this.token = new DERUTF8String(token);
}
/**
* Return the type of this control.
*
* @return CRMFObjectIdentifiers.id_regCtrl_authenticator
*/
public ASN1ObjectIdentifier getType()
{
return type;
}
/**
* Return the token associated with this control (a UTF8String).
*
* @return a UTF8String.
*/
public ASN1Encodable getValue()
{
return token;
}
}