ResourceCheckResult

data class ResourceCheckResult(val fileName: String, val expectedHash: String, val actualHash: String)

Represents the result of a resource file integrity check.

This data class holds information about a single resource file that has been checked for integrity by comparing its actual hash against an expected hash.

Constructors

Link copied to clipboard
constructor(fileName: String, expectedHash: String, actualHash: String)

Properties

Link copied to clipboard

The calculated hash value of the resource file. This is the hash computed during the integrity check.

Link copied to clipboard

The expected hash value of the resource file. This hash is used as a reference for integrity verification.

Link copied to clipboard

The name of the resource file that was checked.

Link copied to clipboard
val ok: Boolean