From bed860f2909ad6b1924ed5dac684bf168c13c7a5 Mon Sep 17 00:00:00 2001 From: Infendro Date: Sat, 13 Dec 2025 22:29:31 +0000 Subject: [PATCH] Add Home --- Home.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Home.md diff --git a/Home.md b/Home.md new file mode 100644 index 0000000..de43a10 --- /dev/null +++ b/Home.md @@ -0,0 +1,30 @@ +# otp-kt + +`otp-kt` is a Kotlin Multiplatform library that provides common one-time password implementations. + +Supported implementations: +- HOTP +- TOTP + +## Targets + +| Target | Status | +|------------------|---------------| +| JVM | Supported | +| JavaScript | Supported | +| Native (Linux) | Supported | +| Native (Windows) | Not Supported | + +## Installation + +Add the following to your `build.gradle.kts`. + +```kotlin +repositories { + maven("https://git.infendro.com/api/packages/Infendro/maven") +} + +dependencies { + implementation("com.infendro:otp:1.2.2") +} +``` \ No newline at end of file