Skip to content

ClearFile

data class ClearFile(val filename: String, val sessionId: String, val fileContent: ByteArray)

ClearFile represents a decrypted file.

Constructors

ClearFileconstructor(filename: String, sessionId: String, fileContent: ByteArray)

Properties

NameSummary
fileContentval fileContent: ByteArray
The content of the decrypted file.
filenameval filename: String
The filename of the decrypted file.
sessionIdval sessionId: String
The ID of the EncryptionSession to which this file belongs.