MVN

dev.robinohs : totp-kt

Maven & Gradle

Feb 18, 2023
17 stars

totp-kt · Native Kotlin library for time-based TOTP and HMAC-based HOTP one-time passwords.

<dependency>
    <groupId>dev.robinohs</groupId>
    <artifactId>totp-kt</artifactId>
    <version>1.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of dev.robinohs : totp-kt to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.1

All Versions

Choose a version of dev.robinohs : totp-kt to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
totp-kt-1.0.1

How to add a dependency to Maven

Add the following dev.robinohs : totp-kt maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>dev.robinohs</groupId>
    <artifactId>totp-kt</artifactId>
    <version>1.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following dev.robinohs : totp-kt gradle dependency to your build.gradle file:

implementation 'dev.robinohs:totp-kt:1.0.1'

Gradle Kotlin DSL: Add the following dev.robinohs : totp-kt gradle kotlin dependency to your build.gradle.kts file:

implementation("dev.robinohs:totp-kt:1.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following dev.robinohs : totp-kt sbt scala dependency to your build.sbt file:

libraryDependencies += "dev.robinohs" % "totp-kt" % "1.0.1"