| Package | Description |
|---|---|
| org.rootservices.jwt.entity.jwk | |
| org.rootservices.jwt.translator |
| Modifier and Type | Method and Description |
|---|---|
Use |
Key.getUse() |
static Use |
Use.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Use[] |
Use.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Key.setUse(Use use) |
| Constructor and Description |
|---|
Key(Optional<String> keyId,
KeyType keyType,
Use use) |
RSAKeyPair(Optional<String> keyId,
KeyType keyType,
Use use,
BigInteger n,
BigInteger e,
BigInteger d,
BigInteger p,
BigInteger q,
BigInteger dp,
BigInteger dq,
BigInteger qi) |
RSAPublicKey(Optional<String> keyId,
KeyType keyType,
Use use,
BigInteger n,
BigInteger e) |
SymmetricKey(Optional<String> keyId,
String key,
Use use) |
| Modifier and Type | Method and Description |
|---|---|
RSAKeyPair |
PemToRSAKeyPair.translate(FileReader pemFileReader,
Optional<String> keyId,
Use use) |
RSAPublicKey |
CSRToRSAPublicKey.translate(FileReader csr,
Optional<String> keyId,
Use use) |
Copyright © 2017. All rights reserved.