libtls: Add getters for TLS handshake authentication details
This commit is contained in:
@@ -415,6 +415,12 @@ METHOD(tls_t, get_eap_msk, chunk_t,
|
|||||||
return this->crypto->get_eap_msk(this->crypto);
|
return this->crypto->get_eap_msk(this->crypto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
METHOD(tls_t, get_auth, auth_cfg_t*,
|
||||||
|
private_tls_t *this)
|
||||||
|
{
|
||||||
|
return this->handshake->get_auth(this->handshake);
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(tls_t, destroy, void,
|
METHOD(tls_t, destroy, void,
|
||||||
private_tls_t *this)
|
private_tls_t *this)
|
||||||
{
|
{
|
||||||
@@ -465,6 +471,7 @@ tls_t *tls_create(bool is_server, identification_t *server,
|
|||||||
.get_purpose = _get_purpose,
|
.get_purpose = _get_purpose,
|
||||||
.is_complete = _is_complete,
|
.is_complete = _is_complete,
|
||||||
.get_eap_msk = _get_eap_msk,
|
.get_eap_msk = _get_eap_msk,
|
||||||
|
.get_auth = _get_auth,
|
||||||
.destroy = _destroy,
|
.destroy = _destroy,
|
||||||
},
|
},
|
||||||
.is_server = is_server,
|
.is_server = is_server,
|
||||||
|
|||||||
@@ -251,6 +251,13 @@ struct tls_t {
|
|||||||
*/
|
*/
|
||||||
chunk_t (*get_eap_msk)(tls_t *this);
|
chunk_t (*get_eap_msk)(tls_t *this);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the authentication details after completing the handshake.
|
||||||
|
*
|
||||||
|
* @return authentication details, internal data
|
||||||
|
*/
|
||||||
|
auth_cfg_t* (*get_auth)(tls_t *this);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destroy a tls_t.
|
* Destroy a tls_t.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -426,6 +426,12 @@ METHOD(tls_eap_t, set_identifier, void,
|
|||||||
this->identifier = identifier;
|
this->identifier = identifier;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
METHOD(tls_eap_t, get_auth, auth_cfg_t*,
|
||||||
|
private_tls_eap_t *this)
|
||||||
|
{
|
||||||
|
return this->tls->get_auth(this->tls);
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(tls_eap_t, destroy, void,
|
METHOD(tls_eap_t, destroy, void,
|
||||||
private_tls_eap_t *this)
|
private_tls_eap_t *this)
|
||||||
{
|
{
|
||||||
@@ -453,6 +459,7 @@ tls_eap_t *tls_eap_create(eap_type_t type, tls_t *tls, size_t frag_size,
|
|||||||
.get_msk = _get_msk,
|
.get_msk = _get_msk,
|
||||||
.get_identifier = _get_identifier,
|
.get_identifier = _get_identifier,
|
||||||
.set_identifier = _set_identifier,
|
.set_identifier = _set_identifier,
|
||||||
|
.get_auth = _get_auth,
|
||||||
.destroy = _destroy,
|
.destroy = _destroy,
|
||||||
},
|
},
|
||||||
.type = type,
|
.type = type,
|
||||||
|
|||||||
@@ -76,6 +76,13 @@ struct tls_eap_t {
|
|||||||
*/
|
*/
|
||||||
void (*set_identifier) (tls_eap_t *this, uint8_t identifier);
|
void (*set_identifier) (tls_eap_t *this, uint8_t identifier);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the authentication details after completing the handshake.
|
||||||
|
*
|
||||||
|
* @return authentication details, internal data
|
||||||
|
*/
|
||||||
|
auth_cfg_t* (*get_auth)(tls_eap_t *this);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destroy a tls_eap_t.
|
* Destroy a tls_eap_t.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -97,6 +97,13 @@ struct tls_handshake_t {
|
|||||||
*/
|
*/
|
||||||
identification_t* (*get_server_id)(tls_handshake_t *this);
|
identification_t* (*get_server_id)(tls_handshake_t *this);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the peers authentication information after completing the handshake.
|
||||||
|
*
|
||||||
|
* @return authentication data, internal data
|
||||||
|
*/
|
||||||
|
auth_cfg_t* (*get_auth)(tls_handshake_t *this);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destroy a tls_handshake_t.
|
* Destroy a tls_handshake_t.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1154,6 +1154,12 @@ METHOD(tls_handshake_t, get_server_id, identification_t*,
|
|||||||
return this->server;
|
return this->server;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
METHOD(tls_handshake_t, get_auth, auth_cfg_t*,
|
||||||
|
private_tls_peer_t *this)
|
||||||
|
{
|
||||||
|
return this->server_auth;
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(tls_handshake_t, destroy, void,
|
METHOD(tls_handshake_t, destroy, void,
|
||||||
private_tls_peer_t *this)
|
private_tls_peer_t *this)
|
||||||
{
|
{
|
||||||
@@ -1187,6 +1193,7 @@ tls_peer_t *tls_peer_create(tls_t *tls, tls_crypto_t *crypto, tls_alert_t *alert
|
|||||||
.finished = _finished,
|
.finished = _finished,
|
||||||
.get_peer_id = _get_peer_id,
|
.get_peer_id = _get_peer_id,
|
||||||
.get_server_id = _get_server_id,
|
.get_server_id = _get_server_id,
|
||||||
|
.get_auth = _get_auth,
|
||||||
.destroy = _destroy,
|
.destroy = _destroy,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1074,6 +1074,12 @@ METHOD(tls_handshake_t, get_server_id, identification_t*,
|
|||||||
return this->server;
|
return this->server;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
METHOD(tls_handshake_t, get_auth, auth_cfg_t*,
|
||||||
|
private_tls_server_t *this)
|
||||||
|
{
|
||||||
|
return this->peer_auth;
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(tls_handshake_t, destroy, void,
|
METHOD(tls_handshake_t, destroy, void,
|
||||||
private_tls_server_t *this)
|
private_tls_server_t *this)
|
||||||
{
|
{
|
||||||
@@ -1108,6 +1114,7 @@ tls_server_t *tls_server_create(tls_t *tls,
|
|||||||
.finished = _finished,
|
.finished = _finished,
|
||||||
.get_peer_id = _get_peer_id,
|
.get_peer_id = _get_peer_id,
|
||||||
.get_server_id = _get_server_id,
|
.get_server_id = _get_server_id,
|
||||||
|
.get_auth = _get_auth,
|
||||||
.destroy = _destroy,
|
.destroy = _destroy,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user