public enum SecurityAlgorithm extends Enum<SecurityAlgorithm>
| Modifier and Type | Class and Description |
|---|---|
static class |
SecurityAlgorithm.AlgorithmType |
| Enum Constant and Description |
|---|
Aes128 |
Aes128Ctr |
Aes256 |
Aes256Ctr |
HmacSha1 |
HmacSha256 |
KwRsa15 |
KwRsaOaep |
PSha1 |
PSha256 |
Rsa15 |
RsaOaep |
RsaOaep256 |
RsaPssSha256 |
RsaSha1 |
RsaSha256 |
| Modifier and Type | Method and Description |
|---|---|
int |
getKeySize()
Getter for the field
keySize. |
String |
getMode()
Getter for the field
mode. |
String |
getPadding()
Getter for the field
padding. |
String |
getStandardName()
Getter for the field
standardName. |
String |
getTransformation()
Getter for the field
transformation. |
SecurityAlgorithm.AlgorithmType |
getType()
Getter for the field
type. |
String |
getUri()
Getter for the field
uri. |
String |
toString() |
static SecurityAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityAlgorithm |
valueOfUri(String algorithmUri)
Find the SecurityAlgorithm with URI.
|
static SecurityAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityAlgorithm HmacSha1
public static final SecurityAlgorithm HmacSha256
public static final SecurityAlgorithm Aes128
public static final SecurityAlgorithm Aes256
public static final SecurityAlgorithm Aes128Ctr
public static final SecurityAlgorithm Aes256Ctr
public static final SecurityAlgorithm RsaSha1
public static final SecurityAlgorithm RsaSha256
public static final SecurityAlgorithm RsaPssSha256
public static final SecurityAlgorithm Rsa15
public static final SecurityAlgorithm RsaOaep
public static final SecurityAlgorithm RsaOaep256
public static final SecurityAlgorithm KwRsaOaep
public static final SecurityAlgorithm KwRsa15
public static final SecurityAlgorithm PSha1
public static final SecurityAlgorithm PSha256
public static SecurityAlgorithm[] values()
for (SecurityAlgorithm c : SecurityAlgorithm.values()) System.out.println(c);
public static SecurityAlgorithm 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 static SecurityAlgorithm valueOfUri(String algorithmUri)
algorithmUri - the Uri to look forpublic int getKeySize()
Getter for the field keySize.
public String getMode()
Getter for the field mode.
public String getPadding()
Getter for the field padding.
public String getStandardName()
Getter for the field standardName.
public String getTransformation()
Getter for the field transformation.
String object.public SecurityAlgorithm.AlgorithmType getType()
Getter for the field type.
public String getUri()
Getter for the field uri.
public String toString()
toString in class Enum<SecurityAlgorithm>Copyright © 2026. All rights reserved.