9

I am experimenting with the Botan library to establish a SSL/TLS connection with a private certificate. Unfortunately I cannot found any actual sample code using the new TLS::Client class. The documentation is barely some more text to the doxygen doc. Is there any project out there using Botan where I can see, how a connection can established? I am agnostic to which compiler or OS is used as my project has to be platform independent anyway.

Martin Schlott
  • 4,369
  • 3
  • 25
  • 49

1 Answers1

2

The best open source examples for using the api at this point are probably the uses by the botan command line tool in src/cmd/tls_client.cpp, and also src/cmd/tls_proxy.cpp which is server side but additionally demonstrates how to tie into asio.

Jack Lloyd
  • 8,215
  • 2
  • 37
  • 47