]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/libimcv/pts/components/tcg/tcg_comp_func_name.c
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libimcv / pts / components / tcg / tcg_comp_func_name.c
CommitLineData
051dfbd6
AS
1/*
2 * Copyright (C) 2011 Andreas Steffen
19ef2aec
TB
3 *
4 * Copyright (C) secunet Security Networks AG
051dfbd6
AS
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 */
16
17#include "tcg_comp_func_name.h"
18
19char pts_tcg_qualifier_flag_names[] = { 'K', 'S' };
20
21ENUM_BEGIN(pts_tcg_qualifier_type_names, PTS_TCG_QUALIFIER_TYPE_UNKNOWN,
22 PTS_TCG_QUALIFIER_TYPE_TNC,
23 "Unknown",
24 "Trusted Platform",
25 "Operating System",
26 "Graphical User Interface",
27 "Application",
28 "Networking",
29 "Library",
30 "TNC Defined Component"
31);
32ENUM_NEXT(pts_tcg_qualifier_type_names, PTS_TCG_QUALIFIER_TYPE_ALL,
33 PTS_TCG_QUALIFIER_TYPE_ALL,
34 PTS_TCG_QUALIFIER_TYPE_TNC,
35 "All Matching Components"
36);
37ENUM_END(pts_tcg_qualifier_type_names, PTS_TCG_QUALIFIER_TYPE_ALL);
38
39ENUM(pts_tcg_comp_func_names, PTS_TCG_COMP_FUNC_NAME_IGNORE,
40 PTS_TCG_COMP_FUNC_NAME_OPT_ROMS,
41 "Ignore",
42 "CRTM",
43 "BIOS",
44 "Platform Extensions",
45 "Motherboard Firmware",
46 "Initial Program Loader",
47 "Option ROMs"
48);
49