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

net.dankito.utils.hashing.IBase64Service.kt Maven / Gradle / Ivy

The newest version!
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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy