libimcv: Allow pts_t.get_my_public_value() to fail

This commit is contained in:
Martin Willi
2015-03-23 17:54:02 +01:00
parent 520d58e010
commit 83cda57e2d
4 changed files with 14 additions and 4 deletions
@@ -137,7 +137,11 @@ bool imc_attestation_process(pa_tnc_attr_t *attr, imc_msg_t *msg,
{
return FALSE;
}
pts->get_my_public_value(pts, &responder_value, &responder_nonce);
if (!pts->get_my_public_value(pts, &responder_value,
&responder_nonce))
{
return FALSE;
}
/* Send DH Nonce Parameters Response attribute */
attr = tcg_pts_attr_dh_nonce_params_resp_create(selected_dh_group,
@@ -69,7 +69,11 @@ bool imv_attestation_build(imv_msg_t *out_msg, imv_state_t *state,
/* Send DH nonce finish attribute */
selected_algorithm = pts->get_meas_algorithm(pts);
pts->get_my_public_value(pts, &initiator_value, &initiator_nonce);
if (!pts->get_my_public_value(pts, &initiator_value,
&initiator_nonce))
{
return FALSE;
}
attr = tcg_pts_attr_dh_nonce_finish_create(selected_algorithm,
initiator_value, initiator_nonce);
attr->set_noskip_flag(attr, TRUE);