summaryrefslogtreecommitdiffstats
path: root/src/tpm2/KdfTestData.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tpm2/KdfTestData.h')
-rw-r--r--src/tpm2/KdfTestData.h100
1 files changed, 100 insertions, 0 deletions
diff --git a/src/tpm2/KdfTestData.h b/src/tpm2/KdfTestData.h
new file mode 100644
index 0000000..aa6c9ce
--- /dev/null
+++ b/src/tpm2/KdfTestData.h
@@ -0,0 +1,100 @@
+/********************************************************************************/
+/* */
+/* Hash Test Vectors */
+/* Written by Ken Goldman */
+/* IBM Thomas J. Watson Research Center */
+/* $Id: KdfTestData.h 1311 2018-08-23 21:39:29Z kgoldman $ */
+/* */
+/* Licenses and Notices */
+/* */
+/* 1. Copyright Licenses: */
+/* */
+/* - Trusted Computing Group (TCG) grants to the user of the source code in */
+/* this specification (the "Source Code") a worldwide, irrevocable, */
+/* nonexclusive, royalty free, copyright license to reproduce, create */
+/* derivative works, distribute, display and perform the Source Code and */
+/* derivative works thereof, and to grant others the rights granted herein. */
+/* */
+/* - The TCG grants to the user of the other parts of the specification */
+/* (other than the Source Code) the rights to reproduce, distribute, */
+/* display, and perform the specification solely for the purpose of */
+/* developing products based on such documents. */
+/* */
+/* 2. Source Code Distribution Conditions: */
+/* */
+/* - Redistributions of Source Code must retain the above copyright licenses, */
+/* this list of conditions and the following disclaimers. */
+/* */
+/* - Redistributions in binary form must reproduce the above copyright */
+/* licenses, this list of conditions and the following disclaimers in the */
+/* documentation and/or other materials provided with the distribution. */
+/* */
+/* 3. Disclaimers: */
+/* */
+/* - THE COPYRIGHT LICENSES SET FORTH ABOVE DO NOT REPRESENT ANY FORM OF */
+/* LICENSE OR WAIVER, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, WITH */
+/* RESPECT TO PATENT RIGHTS HELD BY TCG MEMBERS (OR OTHER THIRD PARTIES) */
+/* THAT MAY BE NECESSARY TO IMPLEMENT THIS SPECIFICATION OR OTHERWISE. */
+/* Contact TCG Administration (admin@trustedcomputinggroup.org) for */
+/* information on specification licensing rights available through TCG */
+/* membership agreements. */
+/* */
+/* - THIS SPECIFICATION IS PROVIDED "AS IS" WITH NO EXPRESS OR IMPLIED */
+/* WARRANTIES WHATSOEVER, INCLUDING ANY WARRANTY OF MERCHANTABILITY OR */
+/* FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, COMPLETENESS, OR */
+/* NONINFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS, OR ANY WARRANTY */
+/* OTHERWISE ARISING OUT OF ANY PROPOSAL, SPECIFICATION OR SAMPLE. */
+/* */
+/* - Without limitation, TCG and its members and licensors disclaim all */
+/* liability, including liability for infringement of any proprietary */
+/* rights, relating to use of information in this specification and to the */
+/* implementation of this specification, and TCG disclaims all liability for */
+/* cost of procurement of substitute goods or services, lost profits, loss */
+/* of use, loss of data or any incidental, consequential, direct, indirect, */
+/* or special damages, whether under contract, tort, warranty or otherwise, */
+/* arising in any way out of use or reliance upon this specification or any */
+/* information herein. */
+/* */
+/* (c) Copyright IBM Corp. and others, 2016 - 2018 */
+/* */
+/********************************************************************************/
+
+//
+// Hash Test Vectors
+//
+
+#define TEST_KDF_KEY_SIZE 20
+TPM2B_TYPE(KDF_TEST_KEY, TEST_KDF_KEY_SIZE);
+TPM2B_KDF_TEST_KEY c_kdfTestKeyIn = {{TEST_KDF_KEY_SIZE, {
+ 0x27, 0x1F, 0xA0, 0x8B, 0xBD, 0xC5, 0x06, 0x0E, 0xC3, 0xDF,
+ 0xA9, 0x28, 0xFF, 0x9B, 0x73, 0x12, 0x3A, 0x12, 0xDA, 0x0C }}};
+TPM2B_TYPE(KDF_TEST_LABEL, 17);
+TPM2B_KDF_TEST_LABEL c_kdfTestLabel = {{17, {
+ 0x4B, 0x44, 0x46, 0x53, 0x45, 0x4C, 0x46, 0x54,
+ 0x45, 0x53, 0x54, 0x4C, 0x41, 0x42, 0x45, 0x4C, 0x00 }}};
+TPM2B_TYPE(KDF_TEST_CONTEXT, 8);
+TPM2B_KDF_TEST_CONTEXT c_kdfTestContextU = {{8, {
+ 0xCE, 0x24, 0x4F, 0x39, 0x5D, 0xCA, 0x73, 0x91 }}};
+TPM2B_KDF_TEST_CONTEXT c_kdfTestContextV = {{8, {
+ 0xDA, 0x50, 0x40, 0x31, 0xDD, 0xF1, 0x2E, 0x83 }}};
+#if ALG_SHA512 == ALG_YES
+TPM2B_KDF_TEST_KEY c_kdfTestKeyOut = {{20, {
+ 0x8b, 0xe2, 0xc1, 0xb8, 0x5b, 0x78, 0x56, 0x9b, 0x9f, 0xa7,
+ 0x59, 0xf5, 0x85, 0x7c, 0x56, 0xd6, 0x84, 0x81, 0x0f, 0xd3 }}};
+#define KDF_TEST_ALG TPM_ALG_SHA512
+#elif ALG_SHA384 == ALG_YES
+TPM2B_KDF_TEST_KEY c_kdfTestKeyOut = {{20, {
+ 0x1d, 0xce, 0x70, 0xc9, 0x11, 0x3e, 0xb2, 0xdb, 0xa4, 0x7b,
+ 0xd9, 0xcf, 0xc7, 0x2b, 0xf4, 0x6f, 0x45, 0xb0, 0x93, 0x12 }}};
+#define KDF_TEST_ALG TPM_ALG_SHA384
+#elif ALG_SHA256 == ALG_YES
+TPM2B_KDF_TEST_KEY c_kdfTestKeyOut = {{20, {
+ 0xbb, 0x02, 0x59, 0xe1, 0xc8, 0xba, 0x60, 0x7e, 0x6a, 0x2c,
+ 0xd7, 0x04, 0xb6, 0x9a, 0x90, 0x2e, 0x9a, 0xde, 0x84, 0xc4 }}};
+#define KDF_TEST_ALG TPM_ALG_SHA256
+#elif ALG_SHA1 == ALG_YES
+TPM2B_KDF_TEST_KEY c_kdfTestKeyOut = {{20, {
+ 0x55, 0xb5, 0xa7, 0x18, 0x4a, 0xa0, 0x74, 0x23, 0xc4, 0x7d,
+ 0xae, 0x76, 0x6c, 0x26, 0xa2, 0x37, 0x7d, 0x7c, 0xf8, 0x51 }}};
+#define KDF_TEST_ALG TPM_ALG_SHA1
+#endif