libimcv: Allow pts_t.set_peer_public_value() to fail
This commit is contained in:
@@ -232,7 +232,7 @@ METHOD(pts_t, get_my_public_value, bool,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
METHOD(pts_t, set_peer_public_value, void,
|
||||
METHOD(pts_t, set_peer_public_value, bool,
|
||||
private_pts_t *this, chunk_t value, chunk_t nonce)
|
||||
{
|
||||
this->dh->set_other_public_value(this->dh, value);
|
||||
@@ -246,6 +246,7 @@ METHOD(pts_t, set_peer_public_value, void,
|
||||
{
|
||||
this->responder_nonce = nonce;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
METHOD(pts_t, calculate_secret, bool,
|
||||
|
||||
@@ -152,8 +152,9 @@ struct pts_t {
|
||||
*
|
||||
* @param value Peer public DH value
|
||||
* @param nonce Peer DH nonce
|
||||
* @return TRUE if public value set successfully
|
||||
*/
|
||||
void (*set_peer_public_value) (pts_t *this, chunk_t value, chunk_t nonce);
|
||||
bool (*set_peer_public_value) (pts_t *this, chunk_t value, chunk_t nonce);
|
||||
|
||||
/**
|
||||
* Calculates assessment secret to be used for TPM Quote as ExternalData
|
||||
|
||||
Reference in New Issue
Block a user