Package | Description |
---|---|
io.vertx.ext.auth | |
io.vertx.ext.auth.jwt | |
io.vertx.ext.auth.oauth2 |
Modifier and Type | Method and Description |
---|---|
PubSecKeyOptions |
PubSecKeyOptions.setAlgorithm(String algorithm) |
PubSecKeyOptions |
PubSecKeyOptions.setBuffer(Buffer buffer)
The PEM or Secret key buffer.
|
PubSecKeyOptions |
PubSecKeyOptions.setBuffer(String buffer)
The PEM or Secret key buffer.
|
PubSecKeyOptions |
PubSecKeyOptions.setCertificate(boolean certificate)
Deprecated.
|
PubSecKeyOptions |
PubSecKeyOptions.setId(String id) |
PubSecKeyOptions |
PubSecKeyOptions.setPublicKey(String publicKey)
Deprecated.
This setter ignored the PEM prefix and suffix which would assume the key to be RSA.
Use
setBuffer(String) with the full content of your OpenSSL pem file. A PEM file must
contain at least 3 lines:
-----BEGIN PUBLIC KEY---- ... -----END PUBLIC KEY--- |
PubSecKeyOptions |
PubSecKeyOptions.setSecretKey(String secretKey)
Deprecated.
This setter ignored the PEM prefix and suffix which would assume the key to be RSA.
Use
setBuffer(String) with the full content of your OpenSSL pem file. A PEM file must
contain at least 3 lines:
-----BEGIN PRIVATE KEY---- ... -----END PRIVATE KEY--- |
PubSecKeyOptions |
PubSecKeyOptions.setSymmetric(boolean symmetric)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static void |
PubSecKeyOptionsConverter.fromJson(Iterable<Map.Entry<String,Object>> json,
PubSecKeyOptions obj) |
static void |
PubSecKeyOptionsConverter.toJson(PubSecKeyOptions obj,
JsonObject json) |
static void |
PubSecKeyOptionsConverter.toJson(PubSecKeyOptions obj,
Map<String,Object> json) |
Constructor and Description |
---|
PubSecKeyOptions(PubSecKeyOptions other)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
List<PubSecKeyOptions> |
JWTAuthOptions.getPubSecKeys() |
Modifier and Type | Method and Description |
---|---|
JWTAuthOptions |
JWTAuthOptions.addPubSecKey(PubSecKeyOptions pubSecKey) |
Modifier and Type | Method and Description |
---|---|
JWTAuthOptions |
JWTAuthOptions.setPubSecKeys(List<PubSecKeyOptions> pubSecKeys) |
Modifier and Type | Method and Description |
---|---|
List<PubSecKeyOptions> |
OAuth2Options.getPubSecKeys()
The provider PubSec key options
|
Modifier and Type | Method and Description |
---|---|
OAuth2Options |
OAuth2Options.addPubSecKey(PubSecKeyOptions pubSecKey) |
Modifier and Type | Method and Description |
---|---|
OAuth2Options |
OAuth2Options.setPubSecKeys(List<PubSecKeyOptions> pubSecKeys) |
Copyright © 2021 Eclipse. All rights reserved.