Uses of Class
org.forgerock.secrets.keys.KeyType
-
Packages that use KeyType Package Description org.forgerock.openig.secrets Provides the Common Secrets API for accessing secrets of various kinds.org.forgerock.secrets.keys Contains cryptographic key related API objects. -
-
Uses of KeyType in org.forgerock.openig.secrets
Methods in org.forgerock.openig.secrets with parameters of type KeyType Modifier and Type Method Description static SecretConstraint<CryptoKey>
SecretsUtils. allowedKeyType(KeyType expected)
Enforce that aCryptoKey
satisfies the given key type constraint. -
Uses of KeyType in org.forgerock.secrets.keys
Methods in org.forgerock.secrets.keys that return KeyType Modifier and Type Method Description static KeyType
KeyType. forCipherConstant(int cipherKeyType)
KeyType
CryptoKey. getKeyType()
Returns an indication of the type of key this is.static KeyType
KeyType. ofKey(Key key)
Returns the type of the given key, ornull
if the input is null or not recognised.static KeyType
KeyType. valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyType[]
KeyType. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-