Uses of Class
org.keycloak.crypto.KeyUse
-
Packages that use KeyUse Package Description org.keycloak.crypto org.keycloak.jose.jwk org.keycloak.keys org.keycloak.models org.keycloak.representations.idm -
-
Uses of KeyUse in org.keycloak.crypto
Methods in org.keycloak.crypto that return KeyUse Modifier and Type Method Description KeyUse
KeyWrapper. getUse()
static KeyUse
KeyUse. valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyUse[]
KeyUse. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.keycloak.crypto with parameters of type KeyUse Modifier and Type Method Description void
KeyWrapper. setUse(KeyUse use)
-
Uses of KeyUse in org.keycloak.jose.jwk
Methods in org.keycloak.jose.jwk with parameters of type KeyUse Modifier and Type Method Description JWK
JWKBuilder. rsa(Key key, List<X509Certificate> certificates, KeyUse keyUse)
JWK
JWKBuilder. rsa(Key key, KeyUse keyUse)
-
Uses of KeyUse in org.keycloak.keys
Methods in org.keycloak.keys with parameters of type KeyUse Modifier and Type Method Description boolean
AbstractGeneratedRsaKeyProviderFactory. createFallbackKeys(KeycloakSession session, KeyUse keyUse, String algorithm)
boolean
GeneratedAesKeyProviderFactory. createFallbackKeys(KeycloakSession session, KeyUse keyUse, String algorithm)
boolean
GeneratedEcdsaKeyProviderFactory. createFallbackKeys(KeycloakSession session, KeyUse keyUse, String algorithm)
boolean
GeneratedHmacKeyProviderFactory. createFallbackKeys(KeycloakSession session, KeyUse keyUse, String algorithm)
default boolean
KeyProviderFactory. createFallbackKeys(KeycloakSession session, KeyUse keyUse, String algorithm)
protected KeyWrapper
AbstractRsaKeyProvider. createKeyWrapper(KeyPair keyPair, X509Certificate certificate, List<X509Certificate> certificateChain, KeyUse keyUse)
protected KeyWrapper
AbstractRsaKeyProvider. createKeyWrapper(KeyPair keyPair, X509Certificate certificate, KeyUse keyUse)
KeyWrapper
DefaultKeyManager. getActiveKey(RealmModel realm, KeyUse use, String algorithm)
KeyWrapper
DefaultKeyManager. getKey(RealmModel realm, String kid, KeyUse use, String algorithm)
Stream<KeyWrapper>
DefaultKeyManager. getKeysStream(RealmModel realm, KeyUse use, String algorithm)
protected abstract boolean
AbstractGeneratedRsaKeyProviderFactory. isValidKeyUse(KeyUse keyUse)
protected abstract boolean
AbstractImportedRsaKeyProviderFactory. isValidKeyUse(KeyUse keyUse)
protected boolean
GeneratedRsaEncKeyProviderFactory. isValidKeyUse(KeyUse keyUse)
protected boolean
GeneratedRsaKeyProviderFactory. isValidKeyUse(KeyUse keyUse)
protected boolean
ImportedRsaEncKeyProviderFactory. isValidKeyUse(KeyUse keyUse)
protected boolean
ImportedRsaKeyProviderFactory. isValidKeyUse(KeyUse keyUse)
Constructors in org.keycloak.keys with parameters of type KeyUse Constructor Description AbstractGeneratedSecretKeyProvider(ComponentModel model, KeyUse use, String type, String algorithm)
-
Uses of KeyUse in org.keycloak.models
Methods in org.keycloak.models with parameters of type KeyUse Modifier and Type Method Description KeyWrapper
KeyManager. getActiveKey(RealmModel realm, KeyUse use, String algorithm)
KeyWrapper
KeyManager. getKey(RealmModel realm, String kid, KeyUse use, String algorithm)
Stream<KeyWrapper>
KeyManager. getKeysStream(RealmModel realm, KeyUse use, String algorithm)
Returns allKeyWrapper
for the given realm that match given criteria. -
Uses of KeyUse in org.keycloak.representations.idm
Methods in org.keycloak.representations.idm that return KeyUse Modifier and Type Method Description KeyUse
KeysMetadataRepresentation.KeyMetadataRepresentation. getUse()
Methods in org.keycloak.representations.idm with parameters of type KeyUse Modifier and Type Method Description void
KeysMetadataRepresentation.KeyMetadataRepresentation. setUse(KeyUse use)
-