https://github.com/osmerion/kotlin-base32
Provides Base32 en- and decoding functionality as a tiny Kotlin Multiplatform library.
https://github.com/osmerion/kotlin-base32
base32 base32hex kotlin kotlin-multiplatform
Last synced: 2 months ago
JSON representation
Provides Base32 en- and decoding functionality as a tiny Kotlin Multiplatform library.
- Host: GitHub
- URL: https://github.com/osmerion/kotlin-base32
- Owner: Osmerion
- License: apache-2.0
- Created: 2024-09-03T20:37:15.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-02-25T11:48:04.000Z (3 months ago)
- Last Synced: 2025-02-25T12:36:38.209Z (3 months ago)
- Topics: base32, base32hex, kotlin, kotlin-multiplatform
- Language: Kotlin
- Homepage:
- Size: 169 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# kotlin-base32
[](https://github.com/Osmerion/kotlin-base32/blob/master/LICENSE)
[](https://maven-badges.herokuapp.com/maven-central/com.osmerion.kotlin/kotlin-base32)

A tiny Kotlin Multiplatform library that provides Base32 en- and decoding
functionality.This library was developed with the intention to eventually upstream the
functionality into the Standard Library. As such, the API, KDoc, samples, and
tests all closely resemble their `kotlin.io.encoding.Base64` counterparts.## Building from source
### Setup
This project uses [Gradle's toolchain support](https://docs.gradle.org/current/userguide/toolchains.html)
to detect and select the JDKs required to run the build. Please refer to the
build scripts to find out which toolchains are requested.An installed JDK 1.8 (or later) is required to use Gradle.
### Building
Once the setup is complete, invoke the respective Gradle tasks using the
following command on Unix/macOS:./gradlew
or the following command on Windows:
gradlew
Important Gradle tasks to remember are:
- `clean` - clean build results
- `build` - assemble and test the project
- `publishToMavenLocal` - build and install all public artifacts to the
local maven repositoryAdditionally `tasks` may be used to print a list of all available tasks.
## License
```
Copyright 2024-2025 Leon LinhartLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttps://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```