Does go implements its own ssl library?

2.2k Views Asked by At

I need to know which ssl implementation does the compiler use. I have to build an application with ssl support and was wandering which ssl library golang relies on in each platform. I looked around and found only this but since it’s quite old, I don’t know if it’s still valid.

2

There are 2 best solutions below

0
On

Go has its own implementation of TLS (not SSL though, it is long deprecated). It is provided by the crypto/tls package of the standard library.

0
On

Does go implements its own ssl library?

Yes. (Well TLS.)