EncryptedEncodedContent

data class EncryptedEncodedContent(val contentDigest: String, val secret: ByteString, val salt: ByteString, val nonce: ByteString, val payload: ByteString, val contentLength: Int? = null, val filename: String? = null)

Constructors

Link copied to clipboard
constructor(contentDigest: String, secret: ByteString, salt: ByteString, nonce: ByteString, payload: ByteString, contentLength: Int? = null, filename: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val contentLength: Int? = null
Link copied to clipboard
val filename: String? = null
Link copied to clipboard
val nonce: ByteString
Link copied to clipboard
val payload: ByteString
Link copied to clipboard
val salt: ByteString
Link copied to clipboard
val secret: ByteString