01: /*
02: * Title: Oyster Project
03: * Description: S/MIME email sending capabilities
04: * @Author Vladimir Radisic
05: * @Version 2.1.5
06: */
07:
08: package org.enhydra.oyster.der;
09:
10: import org.enhydra.oyster.exception.SMIMEException;
11:
12: /**
13: * DERNull is primitive type of DER encoded object for Null type in ASN.1
14: * notation. Null object is constant, and always represented by two bytes:
15: * 05h and 00h.
16: */
17: public class DERNull extends DERObject {
18:
19: /**
20: * Constructs DER encoded object for Null type in ASN.1 notation
21: * @exception SMIMEException thrown in super class constructor.
22: */
23: public DERNull() throws SMIMEException {
24: super (5);
25: }
26: }
|