diff options
author | lloyd <[email protected]> | 2013-02-28 18:49:50 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-02-28 18:49:50 +0000 |
commit | 5d06d27894869db54c9dcad2e71326fca294521e (patch) | |
tree | 751f6a7e3ddf4248549d690e04e95bda42732c29 /src/tls/tls_blocking.h | |
parent | a89d21a2194e9175cd5d65742d44a82172834fe0 (diff) |
Initial blocking client interface for simple uses and 1.10 compat
Diffstat (limited to 'src/tls/tls_blocking.h')
-rw-r--r-- | src/tls/tls_blocking.h | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/src/tls/tls_blocking.h b/src/tls/tls_blocking.h new file mode 100644 index 000000000..d024cf894 --- /dev/null +++ b/src/tls/tls_blocking.h @@ -0,0 +1,89 @@ +/* +* TLS Blocking API +* (C) 2013 Jack Lloyd +* +* Released under the terms of the Botan license +*/ + +#ifndef BOTAN_TLS_BLOCKING_CHANNELS_H__ +#define BOTAN_TLS_BLOCKING_CHANNELS_H__ + +#include <botan/tls_client.h> +#include <botan/tls_server.h> +#include <deque> + +namespace Botan { + +template<typename T> using secure_deque = std::vector<T, secure_allocator<T>>; + +namespace TLS { + +/** +* Blocking TLS Client +*/ +class BOTAN_DLL Blocking_Client + { + public: + + Blocking_Client(std::function<size_t (byte[], size_t)> read_fn, + std::function<void (const byte[], size_t)> write_fn, + Session_Manager& session_manager, + Credentials_Manager& creds, + const Policy& policy, + RandomNumberGenerator& rng, + const Server_Information& server_info = Server_Information(), + const Protocol_Version offer_version = Protocol_Version::latest_tls_version(), + std::function<std::string (std::vector<std::string>)> next_protocol = + std::function<std::string (std::vector<std::string>)>()); + + // Constructor like the 1.10 Client API + Blocking_Client(std::function<size_t (byte[], size_t)> read_fn, + std::function<void (const byte[], size_t)> write_fn, + const Policy& policy, + RandomNumberGenerator& rng); + + size_t currently_readable() const { return m_plaintext.size(); } + + size_t read(byte buf[], size_t buf_len); // blocking read + + void write(const byte buf[], size_t buf_len) { m_channel.send(buf, buf_len); } + + const TLS::Channel& underlying_channel() const { return m_channel; } + TLS::Channel& underlying_channel() { return m_channel; } + + void close() { m_channel.close(); } + + bool is_closed() const { return m_channel.is_closed(); } + + std::vector<X509_Certificate> peer_cert_chain() const + { return m_channel.peer_cert_chain(); } + + virtual ~Blocking_Client() {} + + protected: + /** + * Can override to get the handshake complete notification + */ + virtual bool handshake_complete(const Session&) { return true; } + + /** + * Can override to get notification of alerts + */ + virtual void alert_notification(const Alert&) {} + private: + + bool handshake_complete_cb(const Session&); + + void process_data(const byte data[], size_t data_len, + const Alert& alert); + + std::function<size_t (byte[], size_t)> m_read_fn; + TLS::Client m_channel; + secure_deque<byte> m_plaintext; + }; + +} + +} + +#endif |