Tag: socket

The Secure Socket Layer

What is SSL?

SSL, or Secure Socket Layer, is an Internet Engineering Task Force (IETF) approved protocol designed by Netscape to facilitate the secure transferring of information over the World Wide Web. SSL works by authenticating the server’s identity, along with the user’s identity, and sending encrypted information through the channel, protected from prying packet sniffers.

The Socket API in JXTA 2.0

This article reprinted with permission by java.sun.com

Peer-to-peer (P2P) computing is difficult enough without having to learn a new API. The first version of JXTA introduced us to P2P, but the API was tough to learn, and not easily mapped to our current process. But now, with the release of JXTA 2.0, you get your warm fuzzies back — in the form of a ready-made API to wrap your P2P communications, with a socket-like interface and Java I/O streams.

Back To Top