1 19 20 package com.maverick.crypto.asn1; 21 22 import java.io.IOException ; 23 24 public class DEROctetString 25 extends ASN1OctetString 26 { 27 30 public DEROctetString( 31 byte[] string) 32 { 33 super(string); 34 } 35 36 public DEROctetString( 37 DEREncodable obj) 38 { 39 super(obj); 40 } 41 42 void encode( 43 DEROutputStream out) 44 throws IOException  45 { 46 out.writeEncoded(OCTET_STRING, string); 47 } 48 } 49 | Popular Tags |