tech.inner.hawk.bewit.Base64.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hawkish-bewit Show documentation
Show all versions of hawkish-bewit Show documentation
Signed URLs using Hawk Bewits
package tech.inner.hawk.bewit
import java.util.*
private val base64EncoderUrl = Base64.getUrlEncoder().withoutPadding()!!
private val base64DecoderUrl = Base64.getUrlDecoder()
fun ByteArray.toBase64Url(): String = base64EncoderUrl.encodeToString(this)
fun String.base64UrlToBytes(): ByteArray = base64DecoderUrl.decode(this)