]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/libimcv/pts/pts_req_func_comp_evid.h
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libimcv / pts / pts_req_func_comp_evid.h
CommitLineData
42b08a4d
SC
1/*
2 * Copyright (C) 2011 Sansar Choinyambuu
19ef2aec
TB
3 *
4 * Copyright (C) secunet Security Networks AG
42b08a4d
SC
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/**
8d851141 18 * @defgroup pts_req_func_comp_evid pts_req_func_comp_evid
42b08a4d
SC
19 * @{ @ingroup pts
20 */
21
8d851141
AS
22#ifndef PTS_REQ_FUNC_COMP_EVID_H_
23#define PTS_REQ_FUNC_COMP_EVID_H_
42b08a4d 24
8d851141 25typedef enum pts_req_func_comp_evid_t pts_req_func_comp_evid_t;
051dfbd6 26
42b08a4d 27#include <library.h>
42b08a4d 28
42b08a4d
SC
29/**
30 * PTS Request Functional Component Evidence Flags
31 */
8d851141 32enum pts_req_func_comp_evid_t {
42b08a4d 33 /** Transitive Trust Chain flag */
8d851141 34 PTS_REQ_FUNC_COMP_EVID_TTC = (1<<7),
42b08a4d 35 /** Verify Component flag */
8d851141 36 PTS_REQ_FUNC_COMP_EVID_VER = (1<<6),
42b08a4d 37 /** Current Evidence flag */
8d851141 38 PTS_REQ_FUNC_COMP_EVID_CURR = (1<<5),
42b08a4d 39 /** PCR Information flag */
8d851141 40 PTS_REQ_FUNC_COMP_EVID_PCR = (1<<4),
42b08a4d
SC
41};
42
42b08a4d 43#endif /** PTS_FUNCT_COMP_EVID_REQ_H_ @}*/