13 Aralık 2022 Salı

JSSE (Java Secure Socket Extension) API

Giriş
Açıklaması şöyle
Java Secure Socket Extension, or JSSE, is a framework that abstracts the underlying implementation of transport layer security (TLS). By abstracting the complexity of the underlying protocols, JSSE allows programmers to easily implement secure encrypted communications. JSSE uses the TLS protocol to provide secure, encrypted communications between your clients and servers.

There are four main classes provided by JSSE as standard implementation:

SSLSocketFactory: This class acts as a factory for creating secure sockets.
SSLServerSocketFactory: This class is analogous to the SSLSocketFactory class, but is used specifically for creating server sockets.

SSLSocket: SSLSocket is an extension of Socket that adds a layer of security protections over the underlying network transport protocol, such as TCP and UDP, and provides the benefits of SSL and TLS.

SSLServerSocket: This class is similar to the SSLSocket class. The main difference is that SSLServerSocket is used to create sockets at server side, while SSLSocket is used to create sockets at client side.

Hiç yorum yok:

Yorum Gönder