MVN

dev.turingcomplete : kotlin-onetimepassword

Maven & Gradle

Aug 23, 2022
1 usages
126 stars

Kotlin One-Time Password Library · A Kotlin one-time password library to generate "Google Authenticator", "Time-based One-time Password" (TOTP) and "HMAC-based One-time Password" (HOTP) codes based on RFC 4226 and 6238.

<dependency>
    <groupId>dev.turingcomplete</groupId>
    <artifactId>kotlin-onetimepassword</artifactId>
    <version>2.4.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of dev.turingcomplete : kotlin-onetimepassword to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.4.0

All Versions

Choose a version of dev.turingcomplete : kotlin-onetimepassword to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.4.x
kotlin-onetimepassword-2.4.0
2.3.x
kotlin-onetimepassword-2.3.0
2.2.x
kotlin-onetimepassword-2.2.0
2.1.x
kotlin-onetimepassword-2.1.0
2.0.x
kotlin-onetimepassword-2.0.1
kotlin-onetimepassword-2.0.0
1.0.x
kotlin-onetimepassword-1.0.0

How to add a dependency to Maven

Add the following dev.turingcomplete : kotlin-onetimepassword maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>dev.turingcomplete</groupId>
    <artifactId>kotlin-onetimepassword</artifactId>
    <version>2.4.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following dev.turingcomplete : kotlin-onetimepassword gradle dependency to your build.gradle file:

implementation 'dev.turingcomplete:kotlin-onetimepassword:2.4.0'

Gradle Kotlin DSL: Add the following dev.turingcomplete : kotlin-onetimepassword gradle kotlin dependency to your build.gradle.kts file:

implementation("dev.turingcomplete:kotlin-onetimepassword:2.4.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following dev.turingcomplete : kotlin-onetimepassword sbt scala dependency to your build.sbt file:

libraryDependencies += "dev.turingcomplete" % "kotlin-onetimepassword" % "2.4.0"