Uses of Class
com.authlete.common.types.JWEAlg
-
Packages that use JWEAlg Package Description com.authlete.common.dto Requests to and responses from Authlete APIs and some data structures.com.authlete.common.types Enum definitions and lists of pre-defined constants.com.authlete.common.util Utility classes. -
-
Uses of JWEAlg in com.authlete.common.dto
Methods in com.authlete.common.dto that return JWEAlg Modifier and Type Method Description JWEAlg
Client. getAuthorizationEncryptionAlg()
Get the JWEalg
algorithm for encrypting authorization responses.JWEAlg[]
CredentialIssuerMetadata. getCredentialResponseEncryptionAlgValuesSupported()
Get the supported JWEalg
algorithms for credential response encryption.JWEAlg
Client. getIdTokenEncryptionAlg()
Get the JWEalg
algorithm for encrypting the ID token issued to this client.JWEAlg
StandardIntrospectionRequest. getIntrospectionEncryptionAlg()
Get the JWEalg
algorithm for encrypting the introspection response.JWEAlg
Client. getRequestEncryptionAlg()
Get the JWEalg
algorithm for encrypting request objects.JWEAlg
Client. getUserInfoEncryptionAlg()
Get the JWEalg
algorithm for encrypting UserInfo responses.Methods in com.authlete.common.dto with parameters of type JWEAlg Modifier and Type Method Description Client
Client. setAuthorizationEncryptionAlg(JWEAlg alg)
Set the JWEalg
algorithm for encrypting authorization responses.CredentialIssuerMetadata
CredentialIssuerMetadata. setCredentialResponseEncryptionAlgValuesSupported(JWEAlg[] algs)
Set the supported JWEalg
algorithms for credential response encryption.Client
Client. setIdTokenEncryptionAlg(JWEAlg alg)
Set the JWEalg
algorithm for encrypting the ID token issued to this client.StandardIntrospectionRequest
StandardIntrospectionRequest. setIntrospectionEncryptionAlg(JWEAlg alg)
Set the JWEalg
algorithm for encrypting the introspection response.Client
Client. setRequestEncryptionAlg(JWEAlg alg)
Set the JWEalg
algorithm for encrypting request objects.Client
Client. setUserInfoEncryptionAlg(JWEAlg alg)
Set the JWEalg
algorithm for encrypting UserInfo responses. -
Uses of JWEAlg in com.authlete.common.types
Methods in com.authlete.common.types that return JWEAlg Modifier and Type Method Description static JWEAlg
JWEAlg. getByValue(short value)
Find an instance of this enum by a value.static JWEAlg
JWEAlg. parse(String alg)
ConvertString
toJWEAlg
.static JWEAlg[]
JWEAlg. toArray(int bits)
static JWEAlg
JWEAlg. valueOf(String name)
Returns the enum constant of this type with the specified name.static JWEAlg[]
JWEAlg. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.authlete.common.types that return types with arguments of type JWEAlg Modifier and Type Method Description static EnumSet<JWEAlg>
JWEAlg. toSet(int bits)
static EnumSet<JWEAlg>
JWEAlg. toSet(JWEAlg[] array)
Methods in com.authlete.common.types with parameters of type JWEAlg Modifier and Type Method Description static boolean
JWEAlg. isAsymmetric(JWEAlg alg)
Check if the given JWE algorithm is an asymmetric one.static boolean
JWEAlg. isSymmetric(JWEAlg alg)
Check if the given JWE algorithm is a symmetric one.boolean
HSM. supportsJweAlg(JWEAlg alg)
Check if the HSM supports the specified encryption algorithm.static EnumSet<JWEAlg>
JWEAlg. toSet(JWEAlg[] array)
Method parameters in com.authlete.common.types with type arguments of type JWEAlg Modifier and Type Method Description static int
JWEAlg. toBits(EnumSet<JWEAlg> set)
-
Uses of JWEAlg in com.authlete.common.util
Methods in com.authlete.common.util with parameters of type JWEAlg Modifier and Type Method Description static boolean
JoseUtils. isSupported(JWEAlg alg)
Check whether the given JWE algorithm is supported by Authlete.
-