Class EncryptMessageStreamEntry
- java.lang.Object
-
- org.xipki.pkcs11.wrapper.multipart.EncryptMessageStreamEntry
-
public class EncryptMessageStreamEntry extends Object
Parameter-pair for the multipart operation EncryptMessage. The plain text is anInputStream, and the cipher text is anOutputStream.- Author:
- Lijun Liao (xipki)
-
-
Constructor Summary
Constructors Constructor Description EncryptMessageStreamEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]associatedData()EncryptMessageStreamEntryassociatedData(byte[] associatedData)InputStreaminPlaintext()EncryptMessageStreamEntryinPlaintext(InputStream inPlaintext)OutputStreamoutCiphertext()EncryptMessageStreamEntryoutCiphertext(OutputStream outCiphertext)CkParamsparams()EncryptMessageStreamEntryparams(CkParams params)
-
-
-
Method Detail
-
params
public CkParams params()
-
params
public EncryptMessageStreamEntry params(CkParams params)
-
associatedData
public byte[] associatedData()
-
associatedData
public EncryptMessageStreamEntry associatedData(byte[] associatedData)
-
outCiphertext
public OutputStream outCiphertext()
-
outCiphertext
public EncryptMessageStreamEntry outCiphertext(OutputStream outCiphertext)
-
inPlaintext
public InputStream inPlaintext()
-
inPlaintext
public EncryptMessageStreamEntry inPlaintext(InputStream inPlaintext)
-
-