jwt-scala


License

License

Categories

Categories

Scala Languages
GroupId

GroupId

com.github.3tty0n
ArtifactId

ArtifactId

jwt-scala_2.12
Last Version

Last Version

1.3.0
Release Date

Release Date

Type

Type

jar
Description

Description

jwt-scala
jwt-scala
Project Organization

Project Organization

com.github.3tty0n

Download jwt-scala_2.12

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.3tty0n/jwt-scala_2.12/ -->
<dependency>
    <groupId>com.github.3tty0n</groupId>
    <artifactId>jwt-scala_2.12</artifactId>
    <version>1.3.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.3tty0n/jwt-scala_2.12/
implementation 'com.github.3tty0n:jwt-scala_2.12:1.3.0'
// https://jarcasting.com/artifacts/com.github.3tty0n/jwt-scala_2.12/
implementation ("com.github.3tty0n:jwt-scala_2.12:1.3.0")
'com.github.3tty0n:jwt-scala_2.12:jar:1.3.0'
<dependency org="com.github.3tty0n" name="jwt-scala_2.12" rev="1.3.0">
  <artifact name="jwt-scala_2.12" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.3tty0n', module='jwt-scala_2.12', version='1.3.0')
)
libraryDependencies += "com.github.3tty0n" % "jwt-scala_2.12" % "1.3.0"
[com.github.3tty0n/jwt-scala_2.12 "1.3.0"]

Dependencies

compile (4)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.12.6
com.typesafe.play : play-json_2.12 jar 2.6.8
commons-codec : commons-codec jar 1.6
org.bouncycastle : bcprov-jdk16 jar 1.46

test (1)

Group / Artifact Type Version
org.scalatest : scalatest_2.12 jar 3.0.1

Project Modules

There are no modules declared in this project.

jwt-scala

Build Status

An implementation of JSON Web Tokens

Setup

Jwt-scala has been published for scala 2.12/2.11/2.10 and sbt 1.1.6.

Add the dependency to your build.sbt:

libraryDependencies += "com.github.3tty0n" %% "jwt-scala" % "1.3.0"

Usage

Encode

import com.github._3tty0n.jwt._
import play.api.libs.json.Json

val payload = Json.obj("name" -> "Ahmed", "email" -> "[email protected]")
val jwt = JWT.encode("secret-key", payload)

By default Encode will use HS256 Algorithm but you can pass optional Algorithm

val jwt = JWT.encode("secret-key", payload, Some(Algorithm.HS256))

Supported algorithm are :

  • HS256, HS384, HS512
  • RS256, RS384, RS512

Decode

val payload = Json.obj("name" -> "Ahmed", "email" -> "[email protected]")
val jwt = JWT.encode("secret", payload)

JWT.decode(jwt, Some("secret-1234"))

Licensing

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at apache licenses

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Versions

Version
1.3.0