class JWK : Crypto
JWK https://tools.ietf.org/html/rfc7517 In a nutshell a JWK is a Key(Pair) encoded as JSON. This implementation follows the spec with some limitations: * Supported algorithms are: "RS256", "RS384", "RS512", "ES256", "ES384", "ES512", "HS256", "HS384", "HS512" The rationale for this choice is to support the required algorithms for JWT. The constructor takes a single JWK (the the KeySet) or a PEM encoded pair (used by Google and useful for importing standard PEM files from OpenSSL). * Certificate chains (x5c) only allow a single element chain, certificate urls and fingerprints are not considered. |
|
class JWT
JWT and JWS implementation draft-ietf-oauth-json-web-token-32. |
|
open class JWTOptionsConverter
Converter for io.vertx.ext.jwt.JWTOptions. NOTE: This class has been automatically generated from the io.vertx.ext.jwt.JWTOptions original class using Vert.x codegen. |