aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/cc/polyfrost/oneconfig/utils/dsl/IOUtilsDSL.kt
blob: 6b89fe636545a9667b6bdbc8fe16fa06b64a7600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package cc.polyfrost.oneconfig.utils.dsl

import cc.polyfrost.oneconfig.utils.IOUtils
import cc.polyfrost.oneconfig.utils.NetworkUtils
import java.io.File

/**
 * Returns the SHA-256 hash of the given [File].
 *
 * @see NetworkUtils.getFileChecksum
 */
fun File.checksum() = IOUtils.getFileChecksum(this)