DecryptResult

data class DecryptResult(val plaintext: ByteArray, val fileName: String?, val verified: Boolean, val securityProblems: List<SecurityProblem>)

Result of a successful decryption.

Constructors

Link copied to clipboard
constructor(plaintext: ByteArray, fileName: String?, verified: Boolean, securityProblems: List<SecurityProblem>)

Properties

Link copied to clipboard

Filename from the literal data packet, if any.

Link copied to clipboard

Literal data payload bytes.

Link copied to clipboard

Non-fatal security issues (e.g. missing MDC).

Link copied to clipboard

true when MDC integrity verification succeeded.