public static enum TPMA_ALGORITHM._N extends Enum<TPMA_ALGORITHM._N>
| Enum Constant and Description |
|---|
asymmetric
SET (1): an asymmetric algorithm with public and private portions CLEAR (0): not an asymmetric algorithm
|
encrypting
SET (1): an encryption/decryption algorithm.
|
hash
SET (1): a hash algorithm CLEAR (0): not a hash algorithm
|
method
SET (1): a method such as a key derivative function (KDF) CLEAR (0): not a method
|
object
SET (1): an algorithm that may be used as an object type CLEAR (0): an algorithm that is not used as an object type
|
signing
SET (1): a signing algorithm.
|
symmetric
SET (1): a symmetric block cipher CLEAR (0): not a symmetric block cipher
|
| Modifier and Type | Method and Description |
|---|---|
static TPMA_ALGORITHM._N |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPMA_ALGORITHM._N[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPMA_ALGORITHM._N asymmetric
public static final TPMA_ALGORITHM._N symmetric
public static final TPMA_ALGORITHM._N hash
public static final TPMA_ALGORITHM._N object
public static final TPMA_ALGORITHM._N signing
public static final TPMA_ALGORITHM._N encrypting
public static final TPMA_ALGORITHM._N method
public static TPMA_ALGORITHM._N[] values()
for (TPMA_ALGORITHM._N c : TPMA_ALGORITHM._N.values()) System.out.println(c);
public static TPMA_ALGORITHM._N 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 nullCopyright © 2017. All rights reserved.