commonMain.diglol.crypto.Hash.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hash Show documentation
Show all versions of hash Show documentation
Diglol Crypto for Kotlin Multiplatform.
The newest version!
package diglol.crypto
// https://datatracker.ietf.org/doc/html/rfc4634
expect class Hash(type: Type) {
internal val type: Type
enum class Type {
SHA1,
SHA256,
SHA384,
SHA512
}
suspend fun hash(data: ByteArray): ByteArray
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy