Does go implements its own ssl library?

Greetings! I am relatively new to this language and need to know which ssl implementation does the compiler use. I looked around and found only this but since it’s quite old, I don’t know if it’s still valid.

Yes go implements its own TLS (as it is called now-a-days) library.

https://golang.org/pkg/crypto/tls/

It is a very well written library, very clear code and is considered a reference implementation by a lot of cryptographers.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.