All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.github.jan.supabase.compose.auth.Utils.common.kt Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.github.jan.supabase.compose.auth

import io.ktor.utils.io.core.toByteArray
import korlibs.crypto.SHA256

internal fun String.hash(): String {
    val hash = SHA256.digest(this.toByteArray())
    return hash.hex
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy