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 * DEROctetString is primitive type of DER encoded object for representation of 17 * the octet strings (array of bytes) in ASN.1 notation. 18 */ 19 public class DEROctetString extends DERObject { 20 21 /*** 22 * Creates DER encoded byte array from input byte array 23 * @param octetsString0 byte array for DER encoding 24 * @exception SMIMEException thrown in super class constructor. 25 */ 26 public DEROctetString(byte[] octetsString0) throws SMIMEException { 27 super(4, octetsString0); 28 } 29 } 30

This page was automatically generated by Maven