ALGORITHM
public static final OBJECT_IDENTIFIER ALGORITHM
The OID space for FIPS standardized algorithms.
FORM
public static final Form FORM
PKCS
public static final OBJECT_IDENTIFIER PKCS
The OID space for RSA's PKCS (public key cryptography standards).
PKCS12
public static final OBJECT_IDENTIFIER PKCS12
The OID space for RSA's personal information exchange syntax standard.
PKCS2
public static final OBJECT_IDENTIFIER PKCS2
The OID space for RSA's PKCS #2, which has since been folded into
PKCS #1.
PKCS5
public static final OBJECT_IDENTIFIER PKCS5
The OID space for RSA's password-based encryption standard.
PKCS9
public static final OBJECT_IDENTIFIER PKCS9
The OID space for RSA's Selected Attribute Types standard, PKCS #9.
RSADSI
public static final OBJECT_IDENTIFIER RSADSI
The OID space for RSA Data Security, Inc.
RSA_CIPHER
public static final OBJECT_IDENTIFIER RSA_CIPHER
The OID space for RSA's ciphers.
RSA_DIGEST
public static final OBJECT_IDENTIFIER RSA_DIGEST
The OID space for RSA's message digest algorithms.
TAG
public static final Tag TAG
id_cmc_cMCStatusInfo
public static final OBJECT_IDENTIFIER id_cmc_cMCStatusInfo
CMC control attributes
id_cmc_idConfirmCertAcceptance
public static final OBJECT_IDENTIFIER id_cmc_idConfirmCertAcceptance
encode
public void encode(OutputStream ostream)
throws IOException
- encode in interface ASN1Value
encode
public void encode(Tag implicitTag,
OutputStream ostream)
throws IOException
- encode in interface ASN1Value
equals
public boolean equals(Object obj)
getNumbers
public long[] getNumbers()
hashCode
public int hashCode()
subBranch
public OBJECT_IDENTIFIER subBranch(long num)
Creates a new OBJECT_IDENTIFIER that is a sub-branch of this one.
For example, if OBJECT_IDENTIFIER oid
has the value
{ 1 3 5 6 },
then calling oid.subBranch(4)
would return a new
OBJECT_IDENTIFIER with the value { 1 3 5 6 4 }.
subBranch
public OBJECT_IDENTIFIER subBranch(long[] newNums)
Creates a new OBJECT_IDENTIFIER that is a sub-branch of this one.
For example, if OBJECT_IDENTIFIER oid
has the value
{ 1 3 5 6 },
then calling oid.subBranch(new long[]{ 4, 3})
would return a new
OBJECT_IDENTIFIER with the value { 1 3 5 6 4 3}.
toString
public String toString()