2 * Copyright (C) 2012 Martin Willi
3 * Copyright (C) 2012 revosec AG
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 pt_tls_client pt_tls_client
21 #ifndef PT_TLS_CLIENT_H_
22 #define PT_TLS_CLIENT_H_
24 #include <networking/host.h>
25 #include <utils/identification.h>
27 #include <tnc/tnccs/tnccs.h>
29 typedef struct pt_tls_client_t pt_tls_client_t
;
32 * IF-T for TLS aka PT-TLS transport client.
34 struct pt_tls_client_t
{
37 * Perform an assessment.
39 * @param tnccs upper layer TNC client used for assessment
40 * @return status of assessment
42 status_t (*run_assessment
)(pt_tls_client_t
*this, tnccs_t
*tnccs
);
45 * Destroy a pt_tls_client_t.
47 void (*destroy
)(pt_tls_client_t
*this);
51 * Create a pt_tls_client instance.
53 * The client identity is used for:
54 * - TLS authentication if an appropirate certificate is found
55 * - SASL authentication if requested from the server
57 * @param address address/port to run assessments against, gets owned
58 * @param server server identity to use for authentication, gets owned
59 * @param client client identity to use for authentication, gets owned
60 * @return PT-TLS context
62 pt_tls_client_t
*pt_tls_client_create(host_t
*address
, identification_t
*server
,
63 identification_t
*client
);
65 #endif /** PT_TLS_CLIENT_H_ @}*/