Skip to content

MP-JWT 1.1 Release

Compare
Choose a tag to compare
@starksm64 starksm64 released this 01 Jun 03:29

Javadocs | Spec PDF |Spec html
This is the final version of the 1.1 MP-JWT release. The focus of this release was to add support for configuring the public key and issuer needed for verification of the MP-JWT using MicroProfile Config. The new MicroProfile Config properties are:

  • mp.jwt.verify.publickey : The embedded key material of the public key for the MP-JWT signer in PKCS8 PEM or JWK(S) format. If not found the mp.jwt.verify.publickey.location needs to be checked.
  • mp.jwt.verify.publickey.location : The relative path or full URL of the public key. All relative paths will be resolved within the archive using ClassLoader.getResource. If the value is a URL it will be resolved using new URL(“...”).openStream()
  • mp.jwt.verify.issuer : The expected iss claim value to validate against an MP-JWT.