MVN

net.jalg : jiron

Maven & Gradle

Aug 13, 2013
2 stars

jiron · jiron is a library for working with encapsulated tokens. Encapsulated tokens can be used to encrypt and sign arbitrary messages, pass them around in untrusted environments (e.g. the Web), receive them back and still be sure that noone has seen or modified the original token. This is useful for authentication tokens, e.g. in the context of authorization delegation or cookie-based Web authentication.

<dependency>
    <groupId>net.jalg</groupId>
    <artifactId>jiron</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.jalg : jiron to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0

All Versions

Choose a version of net.jalg : jiron to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
jiron-1.0

How to add a dependency to Maven

Add the following net.jalg : jiron maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.jalg</groupId>
    <artifactId>jiron</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.jalg : jiron gradle dependency to your build.gradle file:

implementation 'net.jalg:jiron:1.0'

Gradle Kotlin DSL: Add the following net.jalg : jiron gradle kotlin dependency to your build.gradle.kts file:

implementation("net.jalg:jiron:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.jalg : jiron sbt scala dependency to your build.sbt file:

libraryDependencies += "net.jalg" % "jiron" % "1.0"