Class JsonWebKeyEncryptionAlgorithm
- java.lang.Object
-
- com.microsoft.azure.keyvault.webkey.JsonWebKeyEncryptionAlgorithm
-
public final class JsonWebKeyEncryptionAlgorithm extends Object
Defines values for JsonWebKeyEncryptionAlgorithm.
-
-
Field Summary
Fields Modifier and Type Field Description static List<JsonWebKeyEncryptionAlgorithm>
ALL_ALGORITHMS
All the JWK encryption algorithms.static JsonWebKeyEncryptionAlgorithm
RSA_OAEP
Static value RSA-OAEP for JsonWebKeyEncryptionAlgorithm.static JsonWebKeyEncryptionAlgorithm
RSA_OAEP_256
Static value RSA-OAEP-256 for JsonWebKeyEncryptionAlgorithm.static JsonWebKeyEncryptionAlgorithm
RSA1_5
Static value RSA1_5 for JsonWebKeyEncryptionAlgorithm.
-
Constructor Summary
Constructors Constructor Description JsonWebKeyEncryptionAlgorithm(String value)
Creates a custom value for JsonWebKeyEncryptionAlgorithm.
-
-
-
Field Detail
-
RSA_OAEP
public static final JsonWebKeyEncryptionAlgorithm RSA_OAEP
Static value RSA-OAEP for JsonWebKeyEncryptionAlgorithm.
-
RSA_OAEP_256
public static final JsonWebKeyEncryptionAlgorithm RSA_OAEP_256
Static value RSA-OAEP-256 for JsonWebKeyEncryptionAlgorithm.
-
RSA1_5
public static final JsonWebKeyEncryptionAlgorithm RSA1_5
Static value RSA1_5 for JsonWebKeyEncryptionAlgorithm.
-
ALL_ALGORITHMS
public static final List<JsonWebKeyEncryptionAlgorithm> ALL_ALGORITHMS
All the JWK encryption algorithms.
-
-
Constructor Detail
-
JsonWebKeyEncryptionAlgorithm
public JsonWebKeyEncryptionAlgorithm(String value)
Creates a custom value for JsonWebKeyEncryptionAlgorithm.- Parameters:
value
- the custom value
-
-