Uses of Interface
iaik.pkcs.pkcs7.ContentStream

Packages that use ContentStream
iaik.pkcs.pkcs7   
 

Uses of ContentStream in iaik.pkcs.pkcs7
 

Classes in iaik.pkcs.pkcs7 that implement ContentStream
 class DataStream
          This class represents the stream-implementation of the PKCS#7 content type Data.
 class DigestedDataStream
          This class represents the stream supporting implementation of the PKCS#7 DigestedData type.
 class EncryptedDataStream
          This class represents the stream-supporting implementation of the PKCS#7 EncryptedData type.
 class EnvelopedDataStream
          This class represents the stream-supporting implementation of the PKCS#7 content type EnvelopedData.
 class SignedAndEnvelopedDataStream
          This class represents the stream-supporting implementation of the PKCS#7 SignedAndEnvelopedData type.
 class SignedDataStream
          This class represents the stream-implementation of the PKCS#7 content type SignedData.
 

Methods in iaik.pkcs.pkcs7 that return ContentStream
static ContentStream ContentInfoStream.create(ObjectID oid)
          Returns a stream-supporting instance of the specified PKCS#7 content type implementation, defined by its ASN.1 ObjectID.
static ContentStream ContentInfoStream.create(ObjectID oid, java.io.InputStream is)
          Returns a stream-supporting instance of the specified PKCS#7 content type implementation, defined by its ASN.1 ObjectID.
 ContentStream ContentInfoStream.getContent()
          Returns the content of this PKCS#7 ContentInfoStream.
 

Methods in iaik.pkcs.pkcs7 with parameters of type ContentStream
 void ContentInfoStream.setContent(ContentStream content)
          Sets the content of this ContentInfo.
 

Constructors in iaik.pkcs.pkcs7 with parameters of type ContentStream
ContentInfoStream.ContentInfoStream(ContentStream content)
          Creates a PKCS#7 ContentInfoStream from the given content value.