Class DecryptMessageStreamEntry
- java.lang.Object
-
- org.xipki.pkcs11.wrapper.multipart.DecryptMessageStreamEntry
-
public class DecryptMessageStreamEntry extends Object
Parameter-pair for the multipart operation DecryptMessage. The cipher text is anInputStream, and the plain text is anOutputStream.- Author:
- Lijun Liao (xipki)
-
-
Constructor Summary
Constructors Constructor Description DecryptMessageStreamEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]associatedData()DecryptMessageStreamEntryassociatedData(byte[] associatedData)InputStreaminCiphertext()DecryptMessageStreamEntryinCiphertext(InputStream inCiphertext)OutputStreamoutPlaintext()DecryptMessageStreamEntryoutPlaintext(OutputStream outPlaintext)CkParamsparams()DecryptMessageStreamEntryparams(CkParams params)
-
-
-
Method Detail
-
params
public CkParams params()
-
params
public DecryptMessageStreamEntry params(CkParams params)
-
associatedData
public byte[] associatedData()
-
associatedData
public DecryptMessageStreamEntry associatedData(byte[] associatedData)
-
outPlaintext
public OutputStream outPlaintext()
-
outPlaintext
public DecryptMessageStreamEntry outPlaintext(OutputStream outPlaintext)
-
inCiphertext
public InputStream inCiphertext()
-
inCiphertext
public DecryptMessageStreamEntry inCiphertext(InputStream inCiphertext)
-
-