Uses of Class
com.dstc.security.cms.CMSTypedDataInputStream

Packages that use CMSTypedDataInputStream
com.dstc.security.cms This package defines classes and interfaces for the Cryptographic Message Syntax (CMS) specified in IETF RFC 2630. 
 

Uses of CMSTypedDataInputStream in com.dstc.security.cms
 

Methods in com.dstc.security.cms that return CMSTypedDataInputStream
 CMSTypedDataInputStream CMSSignature.sign()
          Signs the previously supplied data and returns a CMSInputStream from which the CMS signed data can be read.
 CMSTypedDataInputStream DecryptionResult.getDecrypted()
          Returns a CMSTypedDataInputStream from which the recovered plaintext data can be read.
 CMSTypedDataInputStream CMSCipher.encrypt()
          Encrypts the previously supplied data and returns a CMSTypedDataInputStream from which the CMS enveloped data can be read.
 CMSTypedDataInputStream VerificationResult.getVerified()
          Returns a CMSTypedInputStream from which can be read the data that was purported to be signed (and in the default mode of operation -- see above -- the signature on which was verified successfully).
 

Methods in com.dstc.security.cms with parameters of type CMSTypedDataInputStream
 void CMSSignature.setDataToBeSigned(CMSTypedDataInputStream in, boolean encapContent)
          Supplies the data to be signed in the form of a CMSTypedDataInputStream from which it can be read, together with an indication of whether it should be encapsulated in the subsequently generated CMS signed data.
 void CMSCipher.setDataToBeEncrypted(CMSTypedDataInputStream is)
          Supplies the data to be encrypted (turned into CMS enveloped data) in the form of a CMSTypedDataInputStream.