您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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)