Reputation: 746
Does anyone know how to implement tls using boost sockets ? I have implemented ssl but I would not mind extending it to tls.
Upvotes: 3
Views: 1529
Reputation: 24174
The ssl::context_base
class already supports TLS:
ssl::context_base::method
Different methods supported by a context.
you'll want to use ssl::context_base::method::tlsv1
Upvotes: 2