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 * DERSet is structured type of DER encoded object representing DER
17 * encoded SET or SET OF tag type in ASN.1 notation. Structured type means
18 * that it is comprised from other structured and/or primitive objects.
19 * Difference bettween DERSet and DERSetPr is that class DERSetPr has protected
20 * method addContent. Also, DERSet extends it's super class DERSetPr.
21 */
22 public class DERSet extends DERSetPr {
23
24 /***
25 * Construction of an empty DER Set object
26 * @exception SMIMEException thrown in super class constructor.
27 */
28 public DERSet() throws SMIMEException {}
29
30 /***
31 * Adds content to DER encoded Set object
32 * @param content0 content represented as byte array
33 * @exception SMIMEException thrown in super class constructor.
34 */
35 public void addContent(byte[] content0) throws SMIMEException {
36 super.addContent(content0);
37 }
38 }
39
This page was automatically generated by Maven