ClearFile
data class ClearFile(val filename: String, val sessionId: String, val fileContent: ByteArray)
ClearFile represents a decrypted file.
Constructors
ClearFile | constructor(filename: String, sessionId: String, fileContent: ByteArray) |
Properties
Name | Summary |
---|---|
fileContent | val fileContent: ByteArray The content of the decrypted file. |
filename | val filename: String The filename of the decrypted file. |
sessionId | val sessionId: String The ID of the EncryptionSession to which this file belongs. |