org.mozilla.jss.pkix.cmc

Class TaggedRequest

Implemented Interfaces:
ASN1Value

public class TaggedRequest
extends java.lang.Object
implements ASN1Value

CMC TaggedRequest:
   TaggedRequest ::= CHOICE { 
       tcr               [0] TaggedCertificationRequest, 
       crm               [1] CertReqMsg 
   } 
 

Nested Class Summary

static class
TaggedRequest.Template
A Template for decoding a ProofOfPossession.
static class
TaggedRequest.Type
The type of TaggedRequest.

Field Summary

static TaggedRequest.Type
CRMF
static TaggedRequest.Type
PKCS10

Constructor Summary

TaggedRequest()
TaggedRequest(TaggedRequest.Type type, TaggedCertificationRequest tcr, CertReqMsg crm)
Constructs a TaggedRequest from its components.

Method Summary

void
encode(OutputStream ostream)
Write this value's DER encoding to an output stream using its own base tag.
void
encode(Tag implicitTag, OutputStream ostream)
Write this value's DER encoding to an output stream using an implicit tag.
CertReqMsg
getCrm()
If type == CRMF, returns the crm field.
Tag
getTag()
Returns the base tag for this type, not counting any tags that may be imposed on it by its context.
TaggedCertificationRequest
getTcr()
If type == PKCS10, returns the tcr field.
static TaggedRequest.Template
getTemplate()
TaggedRequest.Type
getType()
Returns the type of TaggedRequest:
  • PKCS10
  • CRMF

Field Details

CRMF

public static TaggedRequest.Type CRMF

PKCS10

public static TaggedRequest.Type PKCS10

Constructor Details

TaggedRequest

public TaggedRequest()

TaggedRequest

public TaggedRequest(TaggedRequest.Type type,
                     TaggedCertificationRequest tcr,
                     CertReqMsg crm)
Constructs a TaggedRequest from its components.
Parameters:
type - The type of the request.
tcr - Tagged pkcs10 request.
crm - CRMF request.

Method Details

encode

public void encode(OutputStream ostream)
            throws IOException
Write this value's DER encoding to an output stream using its own base tag.
Specified by:
encode in interface ASN1Value

encode

public void encode(Tag implicitTag,
                   OutputStream ostream)
            throws IOException
Write this value's DER encoding to an output stream using an implicit tag.
Specified by:
encode in interface ASN1Value

getCrm

public CertReqMsg getCrm()
If type == CRMF, returns the crm field. Otherwise, returns null.

getTag

public Tag getTag()
Returns the base tag for this type, not counting any tags that may be imposed on it by its context.
Specified by:
getTag in interface ASN1Value

getTcr

public TaggedCertificationRequest getTcr()
If type == PKCS10, returns the tcr field. Otherwise, returns null.

getTemplate

public static TaggedRequest.Template getTemplate()

getType

public TaggedRequest.Type getType()
Returns the type of TaggedRequest:
  • PKCS10
  • CRMF