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 //** Introduction 36 37 // This file contains the structures and data definitions for the symmetric tests. 38 // This file references the header file that contains the actual test vectors. This 39 // organization was chosen so that the program that is used to generate the test 40 // vector values does not have to also re-generate this data. 41 #ifndef SELF_TEST_DATA 42 #error "This file may only be included in AlgorithmTests.c" 43 #endif 44 45 #ifndef _SYMMETRIC_TEST_H 46 #define _SYMMETRIC_TEST_H 47 #include "SymmetricTestData.h" 48 49 50 //** Symmetric Test Structures 51 52 const SYMMETRIC_TEST_VECTOR c_symTestValues[NUM_SYMS + 1] = { 53 #if ALG_AES && AES_128 54 {TPM_ALG_AES, 128, key_AES128, 16, sizeof(dataIn_AES128), dataIn_AES128, 55 {dataOut_AES128_CTR, dataOut_AES128_OFB, dataOut_AES128_CBC, 56 dataOut_AES128_CFB, dataOut_AES128_ECB}}, 57 #endif 58 #if ALG_AES && AES_192 59 {TPM_ALG_AES, 192, key_AES192, 16, sizeof(dataIn_AES192), dataIn_AES192, 60 {dataOut_AES192_CTR, dataOut_AES192_OFB, dataOut_AES192_CBC, 61 dataOut_AES192_CFB, dataOut_AES192_ECB}}, 62 #endif 63 #if ALG_AES && AES_256 64 {TPM_ALG_AES, 256, key_AES256, 16, sizeof(dataIn_AES256), dataIn_AES256, 65 {dataOut_AES256_CTR, dataOut_AES256_OFB, dataOut_AES256_CBC, 66 dataOut_AES256_CFB, dataOut_AES256_ECB}}, 67 #endif 68 // There are no SM4 test values yet so... 69 #if ALG_SM4 && SM4_128 && 0 70 {TPM_ALG_SM4, 128, key_SM4128, 16, sizeof(dataIn_SM4128), dataIn_SM4128, 71 {dataOut_SM4128_CTR, dataOut_SM4128_OFB, dataOut_SM4128_CBC, 72 dataOut_SM4128_CFB, dataOut_AES128_ECB}}, 73 #endif 74 {0} 75 }; 76 77 #endif // _SYMMETRIC_TEST_H 78