-
Notifications
You must be signed in to change notification settings - Fork 4
/
tpm2_constants.h
70 lines (62 loc) · 2.88 KB
/
tpm2_constants.h
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
/*
* Copyright (c) 2019 Apertus Solutions, LLC
*
* Author(s):
* Daniel P. Smith <[email protected]>
*
* The definitions in this header are extracted and/or dervied from the
* Trusted Computing Group's TPM 2.0 Library Specification Parts 1&2.
*
*/
#ifndef _TPM2_CONSTANTS_H
#define _TPM2_CONSTANTS_H
#ifndef _AT
#define _AT(T,X) ((T)(X))
#endif
/* Table 9 Definition of (UINT16) TPM_ALG_ID Constants <IN/OUT, S> */
#define TPM_ALG_ERROR _AT(u16, 0x0000)
#define TPM_ALG_RSA _AT(u16, 0x0001)
#define TPM_ALG_SHA _AT(u16, 0x0004)
#define TPM_ALG_SHA1 _AT(u16, 0x0004)
#define TPM_ALG_HMAC _AT(u16, 0x0005)
#define TPM_ALG_AES _AT(u16, 0x0006)
#define TPM_ALG_MGF1 _AT(u16, 0x0007)
#define TPM_ALG_KEYEDHASH _AT(u16, 0x0008)
#define TPM_ALG_XOR _AT(u16, 0x000A)
#define TPM_ALG_SHA256 _AT(u16, 0x000B)
#define TPM_ALG_SHA384 _AT(u16, 0x000C)
#define TPM_ALG_SHA512 _AT(u16, 0x000D)
#define TPM_ALG_NULL _AT(u16, 0x0010)
#define TPM_ALG_SM3_256 _AT(u16, 0x0012)
#define TPM_ALG_SM4 _AT(u16, 0x0013)
#define TPM_ALG_RSASSA _AT(u16, 0x0014)
#define TPM_ALG_RSAES _AT(u16, 0x0015)
#define TPM_ALG_RSAPSS _AT(u16, 0x0016)
#define TPM_ALG_OAEP _AT(u16, 0x0017)
#define TPM_ALG_ECDSA _AT(u16, 0x0018)
#define TPM_ALG_ECDH _AT(u16, 0x0019)
#define TPM_ALG_ECDAA _AT(u16, 0x001A)
#define TPM_ALG_SM2 _AT(u16, 0x001B)
#define TPM_ALG_ECSCHNORR _AT(u16, 0x001C)
#define TPM_ALG_ECMQV _AT(u16, 0x001D)
#define TPM_ALG_KDF1_SP800_56A _AT(u16, 0x0020)
#define TPM_ALG_KDF2 _AT(u16, 0x0021)
#define TPM_ALG_KDF1_SP800_108 _AT(u16, 0x0022)
#define TPM_ALG_ECC _AT(u16, 0x0023)
#define TPM_ALG_SYMCIPHER _AT(u16, 0x0025)
#define TPM_ALG_CAMELLIA _AT(u16, 0x0026)
#define TPM_ALG_CTR _AT(u16, 0x0040)
#define TPM_ALG_OFB _AT(u16, 0x0041)
#define TPM_ALG_CBC _AT(u16, 0x0042)
#define TPM_ALG_CFB _AT(u16, 0x0043)
#define TPM_ALG_ECB _AT(u16, 0x0044)
#define TPM_ALG_FIRST _AT(u16, 0x0001)
#define TPM_ALG_LAST _AT(u16, 0x0044)
/* Table 12 Definition of (UINT32) TPM_CC Constants (Numeric Order) <IN/OUT, S> */
#define TPM_CC_PCR_EXTEND _AT(u32, 0x00000182)
/* Table 19 Definition of (UINT16) TPM_ST Constants <IN/OUT, S> */
#define TPM_ST_NO_SESSIONS _AT(u16, 0x8001)
#define TPM_ST_SESSIONS _AT(u16, 0x8002)
/* Table 28 Definition of (TPM_HANDLE) TPM_RH Constants <S> */
#define TPM_RS_PW _AT(u32, 0x40000009)
#endif