public enum KeyManagementAlgorithm extends Enum<KeyManagementAlgorithm>
Enum Constant and Description |
---|
RSA_OAEP
RSAES using Optimal Asymmetric Encryption Padding with SHA-1
|
RSA_OAEP_256
RSAES using Optimal Asymmetric Encryption Padding with SHA-256
|
Modifier and Type | Method and Description |
---|---|
String |
getAlgorithm() |
static KeyManagementAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyManagementAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyManagementAlgorithm RSA_OAEP
public static final KeyManagementAlgorithm RSA_OAEP_256
public static KeyManagementAlgorithm[] values()
for (KeyManagementAlgorithm c : KeyManagementAlgorithm.values()) System.out.println(c);
public static KeyManagementAlgorithm valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getAlgorithm()
Copyright © 2017 – 2022 Eclipse Foundation. All rights reserved.
Use is subject to license terms.