tsec-jwt-core


License

License

MIT
MIT
GroupId

GroupId

io.github.jmcardon
ArtifactId

ArtifactId

tsec-jwt-core_2.11
Last Version

Last Version

0.2.0-M1
Release Date

Release Date

Type

Type

jar
Description

Description

tsec-jwt-core
tsec-jwt-core
Project URL

Project URL

https://github.com/jmcardon/tsec
Project Organization

Project Organization

io.github.jmcardon
Source Code Management

Source Code Management

https://github.com/jmcardon/tsec

Download tsec-jwt-core_2.11

How to add to project

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

Dependencies

compile (11)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.11.12
io.github.jmcardon : tsec-common_2.11 jar 0.2.0-M1
io.github.jmcardon : tsec-mac_2.11 jar 0.2.0-M1
io.github.jmcardon : tsec-signatures_2.11 jar 0.2.0-M1
org.typelevel : cats-core_2.11 jar 2.0.0-M4
commons-codec : commons-codec jar 1.12
co.fs2 : fs2-io_2.11 jar 1.1.0-M1
io.circe : circe-core_2.11 jar 0.12.0-M3
io.circe : circe-generic_2.11 jar 0.12.0-M3
io.circe : circe-generic-extras_2.11 jar 0.12.0-M3
io.circe : circe-parser_2.11 jar 0.12.0-M3

test (3)

Group / Artifact Type Version
org.scalatest : scalatest_2.11 jar 3.1.0-SNAP13
org.scalatestplus : scalatestplus-scalacheck_2.11 jar 1.0.0-SNAP8
org.scalacheck : scalacheck_2.11 jar 1.14.0

Project Modules

There are no modules declared in this project.
________________________________________  
\__    ___/   _____/\_   _____/\_   ___ \ 
  |    |  \_____  \  |    __)_ /    \  \/ 
  |    |  /        \ |        \\     \____
  |____| /_______  //_______  / \______  /
                 \/         \/         \/ 

TSEC: A type-safe, functional, general purpose security and cryptography library.

Join the chat at https://gitter.im/tsecc/Lobby Build Status Latest Version

Latest Release: 0.0.1-M11

For the current progress, please refer to the RoadMap

For version changes and additions, including breaking changes, see either release notes or the Version Changes page.

Note about using Windows™® with tsec

Windows™® is not supported.

Feel free to fork the project and add your own windows support.

Note on milestones:

Our Notation for versions is:

X.X.X
^ ^ ^____Minor
| |______Major
|________Complete redesign (i.e scalaz 7 vs 8)  

All x.x.x-Mx releases are milestone releases. Thus, we do not guarantee binary compatibility or no api-breakage until a concrete version(i.e 0.0.1). We aim to keep userland-apis relatively stable, but internals shift as we find better/more performant abstractions.

We will guarantee compatibility between minor versions (i.e 0.0.1 => 0.0.2) but not major versions (0.0.1 => 0.1.0)

0.0.1-M11 is here for scala 2.12+ and Cats 1.0.1!

To get started, if you are on sbt 0.13.16+, add

Name Description Examples
tsec-common Common crypto utilities
tsec-password Password hashers: BCrypt and Scrypt here
tsec-cipher-jca Symmetric encryption utilities here
tsec-cipher-bouncy Symmetric encryption utilities here
tsec-mac Message Authentication here
tsec-signatures Digital signatures here
tsec-hash-jca Message Digests (Hashing) here
tsec-hash-bouncy Message Digests (Hashing) here
tsec-libsodium Nicely-typed Libsodium JNI bridge here
tsec-jwt-mac JWT implementation for Message Authentication signatures here
tsec-jwt-sig JWT implementation for Digital signatures here
tsec-http4s Http4s Request Authentication and Authorization here

To include any of these packages in your project use:

val tsecV = "0.0.1-M11"
 libraryDependencies ++= Seq(
 "io.github.jmcardon" %% "tsec-common" % tsecV,
 "io.github.jmcardon" %% "tsec-password" % tsecV,
 "io.github.jmcardon" %% "tsec-cipher-jca" % tsecV,
 "io.github.jmcardon" %% "tsec-cipher-bouncy" % tsecV,
 "io.github.jmcardon" %% "tsec-mac" % tsecV,
 "io.github.jmcardon" %% "tsec-signatures" % tsecV,
 "io.github.jmcardon" %% "tsec-hash-jca" % tsecV,
 "io.github.jmcardon" %% "tsec-hash-bouncy" % tsecV,
 "io.github.jmcardon" %% "tsec-libsodium" % tsecV,
 "io.github.jmcardon" %% "tsec-jwt-mac" % tsecV,
 "io.github.jmcardon" %% "tsec-jwt-sig" % tsecV,
 "io.github.jmcardon" %% "tsec-http4s" % tsecV
)

Note on contributing

See CONTRIBUTING.md

A note on logging

We use log4s which is a logging facade over SLF4J. This implies you need to add a binding to your classpath. Check https://www.slf4j.org/codes.html#StaticLoggerBinder

Big Thank you to our contributors (direct or indirect):

Robert Soeldner (Contributor/Maintainer)

Christopher Davenport(Contributor/Maintainer)

Harrison Houghton(Contributor/Maintainer)

Bjørn Madsen (Contributor)

André Rouél(Contributor)

Edmund Noble (For the dank tagless)

Fabio Labella (For the great FP help)

Will Sargent (Security Discussions)

Versions

Version
0.2.0-M1
0.1.0
0.1.0-M4
0.1.0-M3
0.1.0-M2
0.1.0-M1
0.0.1-RC1
0.0.1-M11