Class KeyWrapAlgorithm
- java.lang.Object
-
- com.azure.core.util.ExpandableStringEnum<KeyWrapAlgorithm>
-
- com.azure.security.keyvault.keys.cryptography.models.KeyWrapAlgorithm
-
public final class KeyWrapAlgorithm extends com.azure.core.util.ExpandableStringEnum<KeyWrapAlgorithm>
Defines values for KeyWrapAlgorithm.
-
-
Field Summary
Fields Modifier and Type Field Description static KeyWrapAlgorithmA128KWStatic value A128KW for KeyWrapAlgorithm.static KeyWrapAlgorithmA192KWStatic value A192KW for KeyWrapAlgorithm.static KeyWrapAlgorithmA256KWStatic value Unwrap Key for KeyWrapAlgorithm.static KeyWrapAlgorithmRSA_OAEPStatic value RSA-OAEP for KeyWrapAlgorithm.static KeyWrapAlgorithmRSA_OAEP_256Static value RSA-OAEP-256 for KeyWrapAlgorithm.static KeyWrapAlgorithmRSA1_5Static value RSA1_5 for KeyWrapAlgorithm.
-
Constructor Summary
Constructors Constructor Description KeyWrapAlgorithm()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyWrapAlgorithmfromString(String name)Creates or finds a KeyWrapAlgorithm from its string representation.static Collection<KeyWrapAlgorithm>values()
-
-
-
Field Detail
-
RSA_OAEP
public static final KeyWrapAlgorithm RSA_OAEP
Static value RSA-OAEP for KeyWrapAlgorithm.
-
RSA_OAEP_256
public static final KeyWrapAlgorithm RSA_OAEP_256
Static value RSA-OAEP-256 for KeyWrapAlgorithm.
-
RSA1_5
public static final KeyWrapAlgorithm RSA1_5
Static value RSA1_5 for KeyWrapAlgorithm.
-
A192KW
public static final KeyWrapAlgorithm A192KW
Static value A192KW for KeyWrapAlgorithm.
-
A128KW
public static final KeyWrapAlgorithm A128KW
Static value A128KW for KeyWrapAlgorithm.
-
A256KW
public static final KeyWrapAlgorithm A256KW
Static value Unwrap Key for KeyWrapAlgorithm.
-
-
Method Detail
-
fromString
public static KeyWrapAlgorithm fromString(String name)
Creates or finds a KeyWrapAlgorithm from its string representation.- Parameters:
name- a name to look for.- Returns:
- the corresponding KeyWrapAlgorithm.
-
values
public static Collection<KeyWrapAlgorithm> values()
- Returns:
- known KeyWrapAlgorithm values.
-
-