public class OtpChallenge extends ASN1Object
otpChallenge attribute: a one-time password value conveyed as part of
a CSR request. The companion OTP generation and verification mechanisms (e.g.
RFC 4226 HOTP, RFC 6238 TOTP) are out of scope.
otpChallenge ATTRIBUTE ::= {
WITH SYNTAX DirectoryString {ub-aa-otpChallenge}
EQUALITY MATCHING RULE caseExactMatch
SINGLE VALUE TRUE
ID id-aa-otpChallenge
}
ub-aa-otpChallenge INTEGER ::= 255
Identified by PKCSObjectIdentifiers.id_aa_otpChallenge.| Constructor and Description |
|---|
OtpChallenge(DirectoryString value) |
OtpChallenge(java.lang.String value) |
| Modifier and Type | Method and Description |
|---|---|
static OtpChallenge |
fromAttribute(Attribute attribute)
Extract the
otpChallenge value carried by a PKCS#9 Attribute. |
protected ASN1ObjectIdentifier |
getAttrType()
The attribute-type OID for this RFC 7894 attribute.
|
static OtpChallenge |
getInstance(java.lang.Object obj) |
java.lang.String |
getString()
Return the value as a Java
String, decoded from whichever
underlying DirectoryString encoding was used. |
DirectoryString |
getValue()
Return the value as a
DirectoryString. |
ASN1Primitive |
toASN1Primitive()
Method providing a primitive representation of this object suitable for encoding.
|
Attribute |
toAttribute()
Wrap this value in a PKCS#9
Attribute carrying the RFC 7894 OID,
ready for inclusion in a CertificationRequest's
attributes set (or in a CSR-Attributes response). |
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCodepublic OtpChallenge(java.lang.String value)
public OtpChallenge(DirectoryString value)
public static OtpChallenge getInstance(java.lang.Object obj)
public static OtpChallenge fromAttribute(Attribute attribute)
otpChallenge value carried by a PKCS#9 Attribute.java.lang.IllegalArgumentException - if the attribute is not
PKCSObjectIdentifiers.id_aa_otpChallenge or does not carry
exactly one value.protected ASN1ObjectIdentifier getAttrType()
toAttribute() to wrap the value in a PKCS#9 Attribute.public DirectoryString getValue()
DirectoryString.public java.lang.String getString()
String, decoded from whichever
underlying DirectoryString encoding was used.public Attribute toAttribute()
Attribute carrying the RFC 7894 OID,
ready for inclusion in a CertificationRequest's
attributes set (or in a CSR-Attributes response).Attribute of the form (oid, {value}).public ASN1Primitive toASN1Primitive()
ASN1ObjecttoASN1Primitive in interface ASN1EncodabletoASN1Primitive in class ASN1Object