2 * Copyright (C) 2011 Sansar Choinyambuu
3 * HSR Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup tcg_pts_attr_dh_nonce_params_resp tcg_pts_attr_dh_nonce_params_resp
18 * @{ @ingroup tcg_pts_attr_dh_nonce_params_resp
21 #ifndef TCG_PTS_ATTR_DH_NONCE_PARAMS_RESP_H_
22 #define TCG_PTS_ATTR_DH_NONCE_PARAMS_RESP_H_
24 typedef struct tcg_pts_attr_dh_nonce_params_resp_t tcg_pts_attr_dh_nonce_params_resp_t
;
27 #include "pa_tnc/pa_tnc_attr.h"
28 #include "tcg_pts_attr_dh_nonce_params_req.h"
29 #include "pts/pts_meas_algo.h"
32 * Class implementing the TCG PTS DH Nonce Parameters Response Attribute
34 struct tcg_pts_attr_dh_nonce_params_resp_t
{
37 * Public PA-TNC attribute interface
39 pa_tnc_attr_t pa_tnc_attribute
;
44 * @return Length of nonce
46 u_int8_t (*get_nonce_len
)(tcg_pts_attr_dh_nonce_params_resp_t
*this);
49 * Get selected Diffie Hellman Group
51 * @return Selected Diffie Hellman Group
53 pts_dh_group_t (*get_dh_group
)(tcg_pts_attr_dh_nonce_params_resp_t
*this);
56 * Get supported hash algorithms
58 * @return Hash algorithm set
60 pts_meas_algorithms_t (*get_hash_algo_set
)(tcg_pts_attr_dh_nonce_params_resp_t
*this);
63 * Get DH Responder Nonce
65 * @return DH Responder Nonce
67 chunk_t (*get_responder_nonce
)(tcg_pts_attr_dh_nonce_params_resp_t
*this);
70 * Get DH Responder Public Value
72 * @return DH Responder Public Value
74 chunk_t (*get_responder_pub_val
)(tcg_pts_attr_dh_nonce_params_resp_t
*this);
79 * Creates an tcg_pts_attr_dh_nonce_params_resp_t object
81 * @param nonce_len Length of nonce
82 * @param dh_group Selected DH group
83 * @param hash_algo_set Set of supported hash algorithms
84 * @param responder_nonce DH Responder Nonce
85 * @param responder_pub_val DH Responder Public value
87 pa_tnc_attr_t
* tcg_pts_attr_dh_nonce_params_resp_create(u_int8_t nonce_len
,
88 pts_dh_group_t dh_group
,
89 pts_meas_algorithms_t hash_algo_set
,
90 chunk_t responder_nonce
,
91 chunk_t responder_pub_val
);
94 * Creates an tcg_pts_attr_dh_nonce_params_resp_t object from received data
96 * @param value unparsed attribute value
98 pa_tnc_attr_t
* tcg_pts_attr_dh_nonce_params_resp_create_from_data(chunk_t value
);
100 #endif /** TCG_PTS_ATTR_DH_NONCE_PARAMS_RESP_H_ @}*/