View Javadoc
1 /* 2 * Title: S/MIME Project 3 * Description: S/MIME email sending capabilities 4 * @Author Vladimir Radisic 5 * @Version 2.0.1 6 */ 7 8 9 package org.webdocwf.util.smime.der; 10 11 12 import org.webdocwf.util.smime.exception.SMIMEException; 13 14 15 /*** 16 * DERNull is primitive type of DER encoded object for Null type in ASN.1 17 * notation. Null object is constant, and always represented by two bytes: 18 * 05h and 00h. 19 */ 20 public class DERNull extends DERObject { 21 22 /*** 23 * Constructs DER encoded object for Null type in ASN.1 notation 24 * @exception SMIMEException thrown in super class constructor. 25 */ 26 public DERNull() throws SMIMEException { 27 super(5); 28 } 29 } 30

This page was automatically generated by Maven