Skip to content

JSON Web Token (JWT) Scala implementation

License

Notifications You must be signed in to change notification settings

sc6l6d3v/jwt-scala

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.sc6l6d3v" %% "jwt-scala" % "1.3.0"

Usage

Encode

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

val payload = Json.obj("name" -> "Ahmed", "email" -> "ahmed@gmail.com")
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" -> "ahmed@gmail.com")
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.

About

JSON Web Token (JWT) Scala implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Scala 100.0%