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

verifiers.Common.kt Maven / Gradle / Ivy

There is a newer version: 2024.9.0
Show newest version
package edu.illinois.cs.cs125.questioner.lib.verifiers

import java.util.Base64

fun String.toBase64(): String = Base64.getEncoder().encodeToString(toByteArray(Charsets.UTF_8))

fun String.fromBase64() = String(Base64.getDecoder().decode(this))




© 2015 - 2024 Weber Informatics LLC | Privacy Policy