Skip to content

JWT token parser library

License

Apache-2.0, Apache-2.0 licenses found

Licenses found

Apache-2.0
LICENSE
Apache-2.0
LICENSE.md
Notifications You must be signed in to change notification settings

developer--/KMM-Jwt-Parser

KMM-Jwt-Parser

Kotlin multiplatform Library used to parse JWT token and return it as a JsonObject

For iOS target jwt token parsing is done in Swift side and then it is bundled using cinterop in order to call swift code from Kotlin

Sample usage:

val parser = JwtParser()
val jsonObject = parser.parse(YOUR_JWT_TOKEN)

Gradle

sourceSets {
    val commonMain by getting {
        dependencies {
           implementation("io.github.developer--:JwtParser:1.0.0")
        }
    }
}