commonMain.dev.inmo.micro_utils.crypto.MD5.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro_utils.crypto Show documentation
Show all versions of micro_utils.crypto Show documentation
It is set of projects with micro tools for avoiding of routines coding
The newest version!
package dev.inmo.micro_utils.crypto
import korlibs.crypto.md5
typealias MD5 = String
fun SourceBytes.md5(): MD5 = md5().hexLower
fun SourceString.md5(): MD5 = encodeToByteArray().md5().hexLower
© 2015 - 2025 Weber Informatics LLC | Privacy Policy