diff options
author | xsipewe <[email protected]> | 2015-03-16 14:18:41 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-04-09 09:08:38 +0200 |
commit | 1776467988178ff24376499747fed836b1765e1d (patch) | |
tree | 363e76320e758f5db1d5c4e209625468b19568ce /lib/ssl/doc/src/ssl_introduction.xml | |
parent | d6ce7b7c14be17c2184878b0bae3f2715bb45358 (diff) | |
download | otp-1776467988178ff24376499747fed836b1765e1d.tar.gz otp-1776467988178ff24376499747fed836b1765e1d.tar.bz2 otp-1776467988178ff24376499747fed836b1765e1d.zip |
ssl: Editorial updates
Diffstat (limited to 'lib/ssl/doc/src/ssl_introduction.xml')
-rw-r--r-- | lib/ssl/doc/src/ssl_introduction.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/ssl/doc/src/ssl_introduction.xml b/lib/ssl/doc/src/ssl_introduction.xml new file mode 100644 index 0000000000..6138749b79 --- /dev/null +++ b/lib/ssl/doc/src/ssl_introduction.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8" ?> +<!DOCTYPE chapter SYSTEM "chapter.dtd"> + +<chapter> + <header> + <copyright> + <year>2015</year> + <year>2015</year> + <holder>Ericsson AB, All Rights Reserved</holder> + </copyright> + <legalnotice> + The contents of this file are subject to the Erlang Public License, + Version 1.1, (the "License"); you may not use this file except in + compliance with the License. You should have received a copy of the + Erlang Public License along with this software. If not, it can be + retrieved online at http://www.erlang.org/. + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + the License for the specific language governing rights and limitations + under the License. + + The Initial Developer of the Original Code is Ericsson AB. + </legalnotice> + + <title>Introduction</title> + <prepared>OTP team</prepared> + <docno></docno> + <date>2015-03-05</date> + <rev>A</rev> + <file>ssl_introduction.xml</file> + </header> + + <section> + <title>Purpose</title> + <p>Transport Layer Security (TLS) and its predecessor, the Secure + Sockets Layer (SSL) are cryptographic protocols designed to + provide communications security over a computer network. They + use x.509 certificates and hence asymmetric cryptography to + authenticate the counterparty with whom they are communicating, + and to exchange a symmetric key. This session key is then used + to encrypt data flowing between the parties. This allows for + data/message confidentiality, and message authentication codes + for message integrity.</p> + </section> + + <section> + <title>Prerequisites</title> + <p>It is assumed that the reader is familiar with the Erlang + programming language, the concepts of OTP, and has a basic + understanding of SSL/TSP.</p> + </section> + +</chapter> |