| Package | Description |
|---|---|
| com.nimbusds.jose.jwk |
JSON Web Key (JWK) classes.
|
| Modifier and Type | Field and Description |
|---|---|
static KeyType |
KeyType.EC
Elliptic Curve (DSS) key type (recommended).
|
static KeyType |
KeyType.OCT
Octet sequence key type (optional)
|
static KeyType |
KeyType.RSA
RSA (RFC 3447) key type (required).
|
| Modifier and Type | Method and Description |
|---|---|
KeyType |
JWK.getKeyType()
Gets the type (
kty) of this JWK. |
static KeyType |
KeyType.parse(java.lang.String s)
Parses a key type from the specified string.
|
| Constructor and Description |
|---|
JWK(KeyType kty,
Use use,
Algorithm alg,
java.lang.String kid)
Creates a new JSON Web Key (JWK).
|
Copyright © 2013 NimbusDS. All Rights Reserved.