1 #ifndef LIBFILEZILLA_TLS_LAYER_HEADER
2 #define LIBFILEZILLA_TLS_LAYER_HEADER
11 class logger_interface;
12 class tls_system_trust_store;
13 class tls_session_info;
18 struct certificate_verification_event_type;
43 return (
static_cast<std::underlying_type_t<tls_server_flags>
>(lhs) &
static_cast<std::underlying_type_t<tls_server_flags>
>(rhs)) != 0;
46 return static_cast<tls_server_flags>(
static_cast<std::underlying_type_t<tls_server_flags>
>(lhs) |
static_cast<std::underlying_type_t<tls_server_flags>
>(rhs));
79 bool client_handshake(std::vector<uint8_t>
const& required_certificate, std::vector<uint8_t>
const& session_to_resume = std::vector<uint8_t>(),
native_string const& session_hostname =
native_string());
97 bool client_handshake(
event_handler *
const verification_handler, std::vector<uint8_t>
const& session_to_resume = std::vector<uint8_t>(),
native_string const& session_hostname =
native_string());
114 bool server_handshake(std::vector<uint8_t>
const& session_to_resume = {}, std::string_view
const& preamble = {},
tls_server_flags flags = {});
117 std::vector<uint8_t> get_session_parameters()
const;
120 std::vector<uint8_t> get_raw_certificate()
const;
127 void set_verification_result(
bool trusted);
129 std::string get_protocol()
const;
131 std::string get_key_exchange()
const;
132 std::string get_cipher()
const;
133 std::string get_mac()
const;
134 int get_algorithm_warnings()
const;
137 bool resumed_session()
const;
140 static std::string list_tls_ciphers(std::string
const& priority);
160 bool set_certificate(std::string_view
const& key, std::string_view
const& certs,
native_string const& password,
bool pem =
true);
163 static std::string get_gnutls_version();
173 static std::pair<std::string, std::string> generate_selfsigned_certificate(
native_string const& password, std::string
const& distinguished_name, std::vector<std::string>
const& hostnames);
174 static std::pair<std::string, std::string> generate_csr(
native_string const& password, std::string
const& distinguished_name, std::vector<std::string>
const& hostnames,
bool csr_as_pem =
true);
188 bool set_alpn(std::string_view
const& alpn);
189 bool set_alpn(std::vector<std::string>
const& alpns,
bool server_priority =
false);
193 void set_min_tls_ver(tls_ver ver);
199 void set_max_tls_ver(tls_ver ver);
202 std::string get_alpn()
const;
207 bool is_server()
const;
217 int new_session_ticket();
232 void set_unexpected_eof_cb(std::function<
bool()>
const& cb);
233 void set_unexpected_eof_cb(std::function<
bool()> && cb);
237 virtual int connect(
native_string const& host,
unsigned int port, address_type family = address_type::unknown)
override;
239 virtual int read(
void *
buffer,
unsigned int size,
int& error)
override;
240 virtual int write(
void const* buffer,
unsigned int size,
int& error)
override;
242 virtual int shutdown()
override;
244 virtual int shutdown_read()
override;
249 virtual void FZ_PRIVATE_SYMBOL operator()(
event_base const& ev)
override;
251 friend class tls_layer_impl;
252 std::unique_ptr<tls_layer_impl> impl_;
Data has become available.
tls_server_flags
Definition: tls_layer.hpp:34
A Transport Layer Security (TLS) layer.
Definition: tls_layer.hpp:62
Interface for sockets.
Definition: socket.hpp:358
Simple handler for asynchronous event processing.
Definition: event_handler.hpp:54
This is the recommended event class.
Definition: event.hpp:67
Opaque class to load the system trust store asynchronously.
Definition: tls_system_trust_store.hpp:29
simple_event< certificate_verification_event_type, tls_layer *, tls_session_info > certificate_verification_event
This event gets sent during the handshake with details about the session and the used certificate...
Definition: tls_layer.hpp:18
Socket classes for networking.
A threaded event loop that supports sending events and timers.
Definition: event_loop.hpp:33
A base class for socket layers.
Definition: socket.hpp:637
std::wstring native_string
A string in the system's native character type and encoding. Note: This typedef changes depending on...
Definition: string.hpp:33
socket_state
State transitions are monotonically increasing.
Definition: socket.hpp:326
The namespace used by libfilezilla.
Definition: apply.hpp:17
In TLS 1.3, do not automatically send PSKs after finishing handshake. Ignored if not TLS 1...
The buffer class is a simple buffer where data can be appended at the end and consumed at the front...
Definition: buffer.hpp:26
Abstract interface for logging strings.
Definition: logger.hpp:50
Common base class for all events.
Definition: event.hpp:22
socket_event_flag
The type of a socket event.
Definition: socket.hpp:34