diff options
author | lloyd <[email protected]> | 2011-04-08 18:41:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-04-08 18:41:19 +0000 |
commit | cba5b5ce28285751aa4b6cc48362dc002ae9063c (patch) | |
tree | 9bc6025338ed7db09d3e4c0918c6bfc134a689db /doc/ssl.txt | |
parent | 8b543e804375a788ae71d461c0f8cf5d4193fc25 (diff) |
More doc updates
Diffstat (limited to 'doc/ssl.txt')
-rw-r--r-- | doc/ssl.txt | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/doc/ssl.txt b/doc/ssl.txt index dd206d5fc..8f2ad3a2a 100644 --- a/doc/ssl.txt +++ b/doc/ssl.txt @@ -1,10 +1,26 @@ -SSL/TLS +SSL and TLS ======================================== -SSL/TLS Clients +Botan supports both client and server implementations of the SSL/TLS +protocols, including SSL v3, TLS v1.0, and TLS v1.1. The insecure and +obsolete SSL v2 is not supported. + +The implementation uses ``std::tr1::function``, so it may not have +been compiled into the version you are using; you can test for the +feature macro ``BOTAN_HAS_SSL_TLS`` to check. + +TLS Clients ---------------------------------------- +A simple TLS client: + +.. literalinclude:: examples/tls_client.cpp -SSL/TLS Servers + +TLS Servers ---------------------------------------- + +A simple TLS server + +.. literalinclude:: examples/tls_server.cpp |