public static enum TPMA_SESSION._N extends Enum<TPMA_SESSION._N>
| Enum Constant and Description |
|---|
audit
SET (1): In a command or response, this setting indicates that the session is for audit and that auditExclusive and auditReset have meaning.
|
auditExclusive
SET (1): In a command, this setting indicates that the command should only be executed if the session is exclusive at the start of the command.
|
auditReset
SET (1): In a command, this setting indicates that the audit digest of the session should be initialized and the exclusive status of the session SET.
|
continueSession
SET (1): In a command, this setting indicates that the session is to remain active after successful completion of the command.
|
decrypt
SET (1): In a command, this setting indicates that the first parameter in the command is symmetrically encrypted using the parameter encryption scheme described in TPM 2.0 Part 1.
|
encrypt
SET (1): In a command, this setting indicates that the TPM should use this session to encrypt the first parameter in the response.
|
| Modifier and Type | Method and Description |
|---|---|
static TPMA_SESSION._N |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPMA_SESSION._N[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPMA_SESSION._N continueSession
public static final TPMA_SESSION._N auditExclusive
public static final TPMA_SESSION._N auditReset
public static final TPMA_SESSION._N decrypt
public static final TPMA_SESSION._N encrypt
public static final TPMA_SESSION._N audit
public static TPMA_SESSION._N[] values()
for (TPMA_SESSION._N c : TPMA_SESSION._N.values()) System.out.println(c);
public static TPMA_SESSION._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.