jwt-scala


License

License

Categories

Categories

Scala Languages
GroupId

GroupId

com.github.xuwei-k
ArtifactId

ArtifactId

jwt-scala_2.11
Last Version

Last Version

1.4.1
Release Date

Release Date

Type

Type

jar
Description

Description

jwt-scala
jwt-scala
Project URL

Project URL

https://github.com/xuwei-k/jwt-scala
Project Organization

Project Organization

com.github.xuwei-k
Source Code Management

Source Code Management

https://github.com/xuwei-k/jwt-scala

Download jwt-scala_2.11

How to add to project

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

Dependencies

compile (4)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.12
com.typesafe.play : play-json_2.11 jar 2.7.4
commons-codec : commons-codec jar 1.14
org.bouncycastle : bcprov-jdk16 jar 1.46

test (1)

Group / Artifact Type Version
org.scalatest : scalatest_2.11 jar 3.2.0

Project Modules

There are no modules declared in this project.

jwt-scala

An implementation of JSON Web Tokens

Setup

Jwt-scala has been published for scala 2.12 and 2.13

Add the dependency to your build.sbt

libraryDependencies += "com.github.xuwei-k" %% "jwt-scala" % "1.6.0"

Usage

Encode

import io.really.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.4.1
1.4.0