/jwt-scala

JSON Web Token (JWT) Scala implementation

Primary LanguageScalaApache License 2.0Apache-2.0

jwt-scala

An implementation of JSON Web Tokens

Setup

Jwt-scala has been published for scala 2.11 and sbt 0.13.6

Add the resolver and the dependency

Usage

Encode

val payload = Json.obj("name" -> "Ahmed", "email" -> "ahmed@gmail.com")
val jwt = JWT.encode("secret-key", payload)

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.