1 package org.bouncycastle.asn1; 2 3 import java.io.InputStream; 4 5 /** 6 * A basic parser for an OCTET STRING object 7 */ 8 public interface ASN1OctetStringParser 9 extends ASN1Encodable, InMemoryRepresentable 10 { 11 /** 12 * Return the content of the OCTET STRING as an InputStream. 13 * 14 * @return an InputStream representing the OCTET STRING's content. 15 */ getOctetStream()16 public InputStream getOctetStream(); 17 } 18