|
What
is Protocol?
An agreed-upon format for
transmitting data between two devices. The protocol determines the
following:
- The type of error checking
to be used
- Data compression method, if
any
- How the sending device will
indicate that it has finished sending a message
- How the receiving device
will indicate that it has received a message
There are a variety of standard
protocols from which programmers can choose. Each has particular advantages and
disadvantages; for example, some are simpler than others, some are more
reliable, and some are faster.
From a user's point of view,
the only interesting aspect about protocols is that your computer or device
must support the right ones if you want to communicate with other computers.
The protocol can be implemented either in hardware or in software.
What is the difference
between SSL and S-HTTP?
SSL Short for
Secure Sockets Layer, a protocol developed by
Netscape for transmitting private documents via the Internet. SSL works by
using a private key to encrypt data that's transferred over the SSL connection.
Both Netscape Navigator and Internet Explorer support SSL, and many Web sites
use the protocol to obtain confidential user information, such as credit card
numbers. By convention, Web pages that require an SSL connection start with
https: instead of http:.
S-HTTP Another
protocol for transmitting data securely over the World Wide Web is Secure
HTTP (S-HTTP). Whereas SSL creates a secure connection between a client and
a server, over which any amount of data can be sent securely, S-HTTP is
designed to transmit individual messages securely. SSL and S-HTTP, therefore,
can be seen as complementary rather than competing technologies. Both protocols
have been submitted to the Internet Engineering Task Force (IETF) for approval
as a standard.
RETURN TO TECHNICAL ARCHIVE
INDEX
|