Class Encrypted
- java.lang.Object
 - 
- org.apache.sysds.runtime.instructions.cp.Data
 - 
- org.apache.sysds.runtime.instructions.cp.Encrypted
 
 
 
- 
- All Implemented Interfaces:
 Serializable
- Direct Known Subclasses:
 CiphertextMatrix,PlaintextMatrix
public abstract class Encrypted extends Data
This class abstracts over an encrypted data. It stores the data as opaque byte array. The layout is unspecified.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description Encrypted(int[] dims, DataCharacteristics dc, byte[] data, Types.DataType dt) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getData()DataCharacteristicsgetDataCharacteristics()int[]getDims()- 
Methods inherited from class org.apache.sysds.runtime.instructions.cp.Data
getDataType, getDebugName, getMetaData, getValueType, removeMetaData, setMetaData, toString, updateDataCharacteristics 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
Encrypted
public Encrypted(int[] dims, DataCharacteristics dc, byte[] data, Types.DataType dt) 
 - 
 
- 
Method Detail
- 
getDims
public int[] getDims()
 
- 
getDataCharacteristics
public DataCharacteristics getDataCharacteristics()
 
- 
getData
public byte[] getData()
 
 - 
 
 -