1 /* Microsoft Reference Implementation for TPM 2.0
2  *
3  *  The copyright in this software is being made available under the BSD License,
4  *  included below. This software may be subject to other third party and
5  *  contributor rights, including patent rights, and no such rights are granted
6  *  under this license.
7  *
8  *  Copyright (c) Microsoft Corporation
9  *
10  *  All rights reserved.
11  *
12  *  BSD License
13  *
14  *  Redistribution and use in source and binary forms, with or without modification,
15  *  are permitted provided that the following conditions are met:
16  *
17  *  Redistributions of source code must retain the above copyright notice, this list
18  *  of conditions and the following disclaimer.
19  *
20  *  Redistributions in binary form must reproduce the above copyright notice, this
21  *  list of conditions and the following disclaimer in the documentation and/or
22  *  other materials provided with the distribution.
23  *
24  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ""AS IS""
25  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27  *  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
28  *  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29  *  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
31  *  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35 
36 //
37 // Hash Test Vectors
38 //
39 
40 #define TEST_KDF_KEY_SIZE   20
41 
42 TPM2B_TYPE(KDF_TEST_KEY, TEST_KDF_KEY_SIZE);
43 TPM2B_KDF_TEST_KEY      c_kdfTestKeyIn = {{TEST_KDF_KEY_SIZE, {
44     0x27, 0x1F, 0xA0, 0x8B, 0xBD, 0xC5, 0x06, 0x0E, 0xC3, 0xDF,
45     0xA9, 0x28, 0xFF, 0x9B, 0x73, 0x12, 0x3A, 0x12, 0xDA, 0x0C }}};
46 
47 TPM2B_TYPE(KDF_TEST_LABEL, 17);
48 TPM2B_KDF_TEST_LABEL    c_kdfTestLabel = {{17, {
49     0x4B, 0x44, 0x46, 0x53, 0x45, 0x4C, 0x46, 0x54,
50     0x45, 0x53, 0x54, 0x4C, 0x41, 0x42, 0x45, 0x4C, 0x00 }}};
51 
52 TPM2B_TYPE(KDF_TEST_CONTEXT, 8);
53 TPM2B_KDF_TEST_CONTEXT  c_kdfTestContextU = {{8, {
54     0xCE, 0x24, 0x4F, 0x39, 0x5D, 0xCA, 0x73, 0x91 }}};
55 
56 TPM2B_KDF_TEST_CONTEXT  c_kdfTestContextV = {{8, {
57     0xDA, 0x50, 0x40, 0x31, 0xDD, 0xF1, 0x2E, 0x83 }}};
58 
59 
60 #if ALG_SHA512 == ALG_YES
61     TPM2B_KDF_TEST_KEY  c_kdfTestKeyOut = {{20, {
62         0x8b, 0xe2, 0xc1, 0xb8, 0x5b, 0x78, 0x56, 0x9b, 0x9f, 0xa7,
63         0x59, 0xf5, 0x85, 0x7c, 0x56, 0xd6, 0x84, 0x81, 0x0f, 0xd3 }}};
64     #define KDF_TEST_ALG    TPM_ALG_SHA512
65 
66 #elif ALG_SHA384 == ALG_YES
67     TPM2B_KDF_TEST_KEY  c_kdfTestKeyOut = {{20, {
68         0x1d, 0xce, 0x70, 0xc9, 0x11, 0x3e, 0xb2, 0xdb, 0xa4, 0x7b,
69         0xd9, 0xcf, 0xc7, 0x2b, 0xf4, 0x6f, 0x45, 0xb0, 0x93, 0x12 }}};
70     #define KDF_TEST_ALG    TPM_ALG_SHA384
71 
72 #elif ALG_SHA256 == ALG_YES
73     TPM2B_KDF_TEST_KEY  c_kdfTestKeyOut = {{20, {
74         0xbb, 0x02, 0x59, 0xe1, 0xc8, 0xba, 0x60, 0x7e, 0x6a, 0x2c,
75         0xd7, 0x04, 0xb6, 0x9a, 0x90, 0x2e, 0x9a, 0xde, 0x84, 0xc4 }}};
76     #define KDF_TEST_ALG    TPM_ALG_SHA256
77 
78 #elif ALG_SHA1 == ALG_YES
79     TPM2B_KDF_TEST_KEY  c_kdfTestKeyOut = {{20, {
80         0x55, 0xb5, 0xa7, 0x18, 0x4a, 0xa0, 0x74, 0x23, 0xc4, 0x7d,
81         0xae, 0x76, 0x6c, 0x26, 0xa2, 0x37, 0x7d, 0x7c, 0xf8, 0x51 }}};
82     #define KDF_TEST_ALG    TPM_ALG_SHA1
83 #endif
84