1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright 2020 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//! This module contains both the constants defined in the TSS specification (tss module)
//! but also the internal representation of the TSS constants.
/// Representation of the constants defined in the
/// Constants -> TPM_ALG_ID section of the specification
pub use AlgorithmIdentifier;
/// The constants defined in the TSS specification.
/// Exposes the constants form the TSS header.
/// Representation of the constants defined in the
/// Constants -> TPM_ST section of the specification
/// Representation of the constants defined in the
/// Constants -> TPM_PT section of the specification
/// Representation of the constants defined in the
/// Constants -> TPM_SU section of the specification
/// Representation of the constants defined in the
/// Constants -> TPM_SE section of the specification
/// Representation of the constants defined in the
/// Constants -> TPM_CAP section of the specification
/// Representation of the return code TSS2_RC (TPM_RC)
/// Representation of the constants defined in the
/// NV Storage -> TPM_NT section of the specification
/// Representation of the constants defined in
/// Constants -> TPM_ECC_CURVE section of the specification.
/// Representation of the constants defined in
/// Constants -> TPM_CC section of the specification.
/// Representation of the constants defined in
/// Constants -> TPM_PT_PCR section of the specification.
pub use CapabilityType;
pub use CommandCode;
pub use EccCurveIdentifier;
pub use NvIndexType;
pub use PcrPropertyTag;
pub use PropertyTag;
pub use ;
pub use SessionType;
pub use StartupType;
pub use StructureTag;