You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Base64.kt 202B

123456
  1. package com.dmdirc.ktirc.sasl
  2. import java.util.*
  3. internal fun ByteArray.toBase64() = String(Base64.getEncoder().encode(this))
  4. internal fun String.fromBase64() = Base64.getDecoder().decode(this)