{"id":13536726,"url":"https://github.com/saschpe/Kase64","last_synced_at":"2025-04-02T03:30:58.469Z","repository":{"id":38973673,"uuid":"466136003","full_name":"saschpe/Kase64","owner":"saschpe","description":"Base64 encoder/decoder for Kotlin/Multiplatform. Supports Android, iOS, JavaScript and plain JVM environments.","archived":false,"fork":false,"pushed_at":"2025-02-17T12:52:55.000Z","size":435,"stargazers_count":35,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-24T02:24:04.192Z","etag":null,"topics":["android","base64","base64-decoding","base64-encoding","base64decoder","base64encode","base64encoder","ios","java","jvm","kotlin","kotlin-android","kotlin-ios","kotlin-js","kotlin-jvm","kotlin-library","kotlin-multiplatform","kotlin-multiplatform-library"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/saschpe.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"saschpe"}},"created_at":"2022-03-04T13:35:41.000Z","updated_at":"2025-02-17T12:52:58.000Z","dependencies_parsed_at":"2024-01-16T15:40:21.478Z","dependency_job_id":"a5a9f289-1646-4d54-a110-8a1058e75a71","html_url":"https://github.com/saschpe/Kase64","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2FKase64","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2FKase64/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2FKase64/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saschpe%2FKase64/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saschpe","download_url":"https://codeload.github.com/saschpe/Kase64/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246750973,"owners_count":20827811,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","base64","base64-decoding","base64-encoding","base64decoder","base64encode","base64encoder","ios","java","jvm","kotlin","kotlin-android","kotlin-ios","kotlin-js","kotlin-jvm","kotlin-library","kotlin-multiplatform","kotlin-multiplatform-library"],"created_at":"2024-08-01T09:00:48.035Z","updated_at":"2025-04-02T03:30:58.444Z","avatar_url":"https://github.com/saschpe.png","language":"Kotlin","funding_links":["https://github.com/sponsors/saschpe"],"categories":["Libraries"],"sub_categories":["Serializer"],"readme":"# Kase64\n\n[![Kotlin Version](https://img.shields.io/badge/Kotlin-1.9.10-B125EA?logo=kotlin)](https://kotlinlang.org)\n[![Maven Central](https://img.shields.io/maven-central/v/de.peilicke.sascha/kase64.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/de.peilicke.sascha/kase64)\n[![Build Status](https://github.com/saschpe/kase64/workflows/Main/badge.svg)](https://github.com/saschpe/kase64/actions)\n[![License](http://img.shields.io/:License-Apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)\n\n![badge-android](http://img.shields.io/badge/Platform-Android-brightgreen.svg?logo=android)\n![badge-ios](http://img.shields.io/badge/Platform-iOS-orange.svg?logo=apple)\n![badge-js](http://img.shields.io/badge/Platform-NodeJS-yellow.svg?logo=javascript)\n![badge-jvm](http://img.shields.io/badge/Platform-JVM-red.svg?logo=openjdk)\n![badge-linux](http://img.shields.io/badge/Platform-Linux-lightgrey.svg?logo=linux)\n![badge-macos](http://img.shields.io/badge/Platform-macOS-orange.svg?logo=apple)\n![badge-windows](http://img.shields.io/badge/Platform-Windows-blue.svg?logo=windows)\n\n[//]: # (![badge-tvos]\u0026#40;http://img.shields.io/badge/Platform-tvOS-orange.svg?logo=apple\u0026#41;)\n\n[//]: # (![badge-watchos]\u0026#40;http://img.shields.io/badge/Platform-watchOS-orange.svg?logo=apple\u0026#41;)\n\nBase64 encoder/decoder for Kotlin/Multiplatform. Supports Android, iOS, Linux, JavaScript, Windows, watchOS, tvOS\nand plain JVM environments.\n\n**Supported encodings**\n\n- [Standard (Rfc 4648 section 4)](https://www.ietf.org/rfc/rfc4648.html#section-4)\n- [URL-safe (Rfc 4648 section 5)](https://www.ietf.org/rfc/rfc4648.html#section-5)\n\n## Download\n\nArtifacts are published to [Maven Central][maven-central]:\n\n```kotlin\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    implementation(\"de.peilicke.sascha:kase64:1.2.1\")\n}\n```\n\n## Usage\n\nStandard Base64 decoding and encoding:\n\n```kotlin\nimport saschpe.kase64.*\n\nval helloWorld = \"SGVsbG8sIHdvcmxkIQ==\".base64Decoded // \"Hello, world!\"\nprintln(\"Hello, world!\".base64Encoded) // Prints \"SGVsbG8sIHdvcmxkIQ==\"\n```\n\nURL-safe Base64 decoding and encoding:\n\n```kotlin\nimport saschpe.kase64.*\n\nval helloWorld = \"SGVsbG8sIHdvcmxkIQ\".base64UrlDecoded // \"Hello, world!\"\nprintln(\"Hello, world!\".base64UrlEncoded) // Prints \"SGVsbG8sIHdvcmxkIQ\"\n```\n\n## License\n\n    Copyright 2022 Sascha Peilicke\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n[maven-central]: https://search.maven.org/artifact/de.peilicke.sascha/kase64\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaschpe%2FKase64","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaschpe%2FKase64","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaschpe%2FKase64/lists"}