gda2004
gda2004

Reputation: 746

Transport Layer Security boost sockets

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

Answers (1)

Sam Miller
Sam Miller

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

Related Questions