Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 728
gda2004 Avatar asked Apr 19 '26 18:04

gda2004


1 Answers

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

like image 71
Sam Miller Avatar answered Apr 21 '26 08:04

Sam Miller