Package com.sun.xml.wss.core
Class EncryptedDataImpl
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.ByteArrayOutputStream
-
- com.sun.xml.wss.core.EncryptedDataImpl
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class EncryptedDataImpl extends ByteArrayOutputStream
Simple EncryptedData for Sign and Encrypt Usecase.- Author:
- [email protected]
-
-
Field Summary
-
Fields inherited from class java.io.ByteArrayOutputStream
buf, count
-
-
Constructor Summary
Constructors Constructor Description EncryptedDataImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEncAlgo()
String
getEncoding()
byte[]
getEncryptedData()
String
getId()
byte[]
getIv()
KeyInfoHeaderBlock
getKeyInfo()
String
getMimeType()
String
getType()
void
setEncAlgo(String encAlgo)
void
setEncoding(String encoding)
void
setEncryptedData(byte[] encryptedData)
void
setId(String id)
void
setIv(byte[] iv)
void
setKeyInfo(KeyInfoHeaderBlock keyInfo)
void
setMimeType(String mimeType)
void
setType(String type)
-
Methods inherited from class java.io.ByteArrayOutputStream
close, reset, size, toByteArray, toString, toString, toString, toString, write, write, writeBytes, writeTo
-
Methods inherited from class java.io.OutputStream
flush, nullOutputStream, write
-
-
-
-
Method Detail
-
getIv
public byte[] getIv()
-
setIv
public void setIv(byte[] iv)
-
getEncryptedData
public byte[] getEncryptedData()
-
setEncryptedData
public void setEncryptedData(byte[] encryptedData)
-
getKeyInfo
public KeyInfoHeaderBlock getKeyInfo()
-
setKeyInfo
public void setKeyInfo(KeyInfoHeaderBlock keyInfo)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getMimeType
public String getMimeType()
-
setMimeType
public void setMimeType(String mimeType)
-
getEncoding
public String getEncoding()
-
setEncoding
public void setEncoding(String encoding)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getEncAlgo
public String getEncAlgo()
-
setEncAlgo
public void setEncAlgo(String encAlgo)
-
-