What is SSL/TLS (Secure Sockets Layer / Transport Layer Security)?

Turkish: SSL/TLS

SSL/TLS is the protocol family that provides identity checks, key agreement, and encrypted data transfer between clients and servers.

What is SSL/TLS?

SSL/TLS is the protocol family used to encrypt traffic between a browser and server, an application and API, or two backend services. SSL is the older name; modern secure connections use TLS 1.2 or TLS 1.3.

At the start of a connection, both sides negotiate the TLS version and cipher suites they support. The server sends its certificate, and the client verifies that it is trusted and matches the requested domain. The sides then establish a session key, and the rest of the data is protected with symmetric encryption.

Where It Is Used

HTTPS is the best-known use of SSL/TLS on the web. The same foundation protects database connections, email protocols, service-to-service API calls, and admin panels. Platforms such as Cloudflare can help with TLS termination, certificate management, and disabling obsolete protocols.

A secure setup turns off old SSL versions, avoids weak ciphers, considers browser policies such as HSTS, and automates certificate renewal. TLS protects data in transit; application authorization, session security, and data access rules still need to be designed separately.