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.cms;
10
11
12 import org.webdocwf.util.smime.exception.SMIMEException;
13 import org.webdocwf.util.smime.der.DEROctetString;
14
15
16 /***
17 * EncryptedKey class is DER encoded Octet string represented in ASN.1 notation
18 * according to RFC2630.<BR>
19 * <BR>
20 * EncryptedKey ::= OCTET STRING<BR>
21 */
22 public class EncryptedKey extends DEROctetString {
23
24 /***
25 * Constructs container for symmetric encryption key
26 * @param encKey0 symmetric encryption key represented as byte array.
27 * @exception SMIMEException thrown from super class constructor.
28 */
29 public EncryptedKey(byte[] encKey0) throws SMIMEException {
30 super(encKey0);
31 }
32 }
33
This page was automatically generated by Maven