net.dankito.utils.hashing.IBase64Service.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-utils Show documentation
Show all versions of java-utils Show documentation
Some basic utils needed in many projects
package net.dankito.utils.hashing
import java.nio.charset.Charset
interface IBase64Service {
companion object {
val DEFAULT_CHAR_SET: Charset = Charset.forName("UTF-8")
}
fun encode(stringToEncode: String): String
fun encode(dataToEncode: ByteArray): String
fun decode(stringToDecode: String): String
fun decodeToBytes(stringToDecode: String): ByteArray
}