DEROctetString.java
上传用户:lior1029
上传日期:2013-05-07
资源大小:209k
文件大小:0k
源码类别:

CA认证

开发平台:

Java

  1. package org.bouncycastle.asn1;
  2. import java.io.*;
  3. public class DEROctetString
  4.     extends ASN1OctetString
  5. {
  6.     /**
  7.      * @param string the octets making up the octet string.
  8.      */
  9.     public DEROctetString(
  10.         byte[]  string)
  11.     {
  12.         super(string);
  13.     }
  14.     public DEROctetString(
  15.         DEREncodable  obj)
  16.     {
  17.         super(obj);
  18.     }
  19.     void encode(
  20.         DEROutputStream out)
  21.         throws IOException
  22.     {
  23.         out.writeEncoded(OCTET_STRING, string);
  24.     }
  25. }