org.mozilla.jss.pkcs12
Class CertBag
java.lang.Object
|
+--org.mozilla.jss.pkcs12.CertBag
- public class CertBag
- extends java.lang.Object
- implements ASN1Value
A PKCS #12 cert bag.
Inner Class Summary |
static class |
CertBag.Template
A Template class for decoding CertBags from their BER encoding. |
Methods inherited from class java.lang.Object |
,
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
registerNatives,
toString,
wait,
wait,
wait |
CERT_TYPES
private static final OBJECT_IDENTIFIER CERT_TYPES
X509_CERT_TYPE
public static final OBJECT_IDENTIFIER X509_CERT_TYPE
SDSI_CERT_TYPE
public static final OBJECT_IDENTIFIER SDSI_CERT_TYPE
certType
private OBJECT_IDENTIFIER certType
cert
private ANY cert
sequence
private SEQUENCE sequence
TAG
private static final Tag TAG
templateInstance
private static final CertBag.Template templateInstance
CertBag
private CertBag()
CertBag
public CertBag(OBJECT_IDENTIFIER certType,
ASN1Value cert)
- Creates a CertBag from a type and a cert.
getCertType
public OBJECT_IDENTIFIER getCertType()
- Returns the certType field of the CertBag. Currently defined types are:
- X509Certificate (
X509_CERT_TYPE
)
- SDSICertificate (
SDSI_CERT_TYPE
)
getCert
public ANY getCert()
- Returns the cert field of the CertBag.
getInterpretedCert
public ASN1Value getInterpretedCert()
throws InvalidBERException
- Returns the cert field of the CertBag based on its type.
- If the type is
X509_CERT_TYPE
, returns
and OCTET_STRING which is the DER-encoding of an X.509 certificate.
- If the type is
SDSI_CERT_TYPE
, returns
an IA5String.
- For all other types, returns an ANY.
- Throws:
- InvalidBERException - If the cert is not encoded correctly.
getTag
public Tag getTag()
- Specified by:
- getTag in interface ASN1Value
encode
public void encode(java.io.OutputStream ostream)
throws java.io.IOException
- Specified by:
- encode in interface ASN1Value
encode
public void encode(Tag implicitTag,
java.io.OutputStream ostream)
throws java.io.IOException
- Specified by:
- encode in interface ASN1Value
getTemplate
public static CertBag.Template getTemplate()