Clone
3
Home
Infendro edited this page 2026-01-29 16:46:51 +00:00

encoding-kt

encoding-kt is a Kotlin Multiplatform library that provides common ByteArray encodings.

Supported encodings:

  • Base2 (binary)
  • Base8 (octal)
  • Base10 (decimal)
  • Base16 (hexadecimal, uppercase/lowercase)
  • Base32
  • Base36
  • Base45
  • Base56
  • Base58
  • Base62
  • Base64 (standard/URL)

Installation

Add the following to your build.gradle.kts.

repositories {
    maven("https://git.infendro.com/api/packages/Infendro/maven")
}

dependencies {
    implementation("com.infendro:encoding:1.3.0")
}