Lines Matching refs:SSL
8 [section:ssl SSL]
10 Boost.Asio contains classes and class templates for basic SSL support. These classes
14 Before creating an encrypted stream, an application must construct an SSL
15 context object. This object is used to set SSL options such as verification
23 To use SSL with a TCP socket, one may write:
36 lifetime than the SSL stream, in which case the template parameter should be a
42 SSL handshaking must be performed prior to transmitting or receiving data over
47 Once connected, SSL stream objects are used as synchronous or asynchronous read
56 Boost.Asio provides various methods for configuring the way SSL certificates are
92 // Perform SSL handshake and verify the remote host's
100 [heading SSL and Threads]
102 SSL stream objects perform no locking of their own. Therefore, it is essential
103 that all asynchronous SSL operations are performed in an implicit or explicit
113 [link boost_asio.examples.cpp03_examples.ssl SSL example (C++03)],
114 [link boost_asio.examples.cpp11_examples.ssl SSL example (C++11)].
118 [@http://www.openssl.org OpenSSL] is required to make use of Boost.Asio's SSL