KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > oyster > der > DERNull


1 /*
2  * Title: Oyster Project
3  * Description: S/MIME email sending capabilities
4  * @Author Vladimir Radisic
5  * @Version 2.1.5
6  */

7
8
9 package org.enhydra.oyster.der;
10
11 import org.enhydra.oyster.exception.SMIMEException;
12
13
14 /**
15  * DERNull is primitive type of DER encoded object for Null type in ASN.1
16  * notation. Null object is constant, and always represented by two bytes:
17  * 05h and 00h.
18  */

19 public class DERNull extends DERObject {
20
21 /**
22  * Constructs DER encoded object for Null type in ASN.1 notation
23  * @exception SMIMEException thrown in super class constructor.
24  */

25   public DERNull () throws SMIMEException
26   {
27     super(5);
28   }
29 }
30
31
32
33
Popular Tags