[Secure Coding] master: Started OpenSSL chapter and added it to the guide for testing (e9907e4)

sparks at fedoraproject.org sparks at fedoraproject.org
Thu May 29 15:54:05 UTC 2014


Repository : http://git.fedorahosted.org/git/?p=secure-coding.git

On branch  : master

>---------------------------------------------------------------

commit e9907e4c0b79788616f86f75f7ac40b0fa5813b4
Author: Eric Christensen <echriste at redhat.com>
Date:   Thu May 29 11:53:01 2014 -0400

    Started OpenSSL chapter and added it to the guide for testing


>---------------------------------------------------------------

 Securing_TLS/en-US/OpenSSL.xml      |   49 ++++++++++++++++++----------------
 Securing_TLS/en-US/Securing_TLS.xml |    1 +
 2 files changed, 27 insertions(+), 23 deletions(-)

diff --git a/Securing_TLS/en-US/OpenSSL.xml b/Securing_TLS/en-US/OpenSSL.xml
index 36febc1..115c8e9 100644
--- a/Securing_TLS/en-US/OpenSSL.xml
+++ b/Securing_TLS/en-US/OpenSSL.xml
@@ -3,31 +3,34 @@
 <!ENTITY % BOOK_ENTITIES SYSTEM "Securing_TLS.ent">
 %BOOK_ENTITIES;
 ]>
-<chapter id="chap-Fedora_Security_Team-Securing_TLS-Test_Chapter">
-	<title>Test Chapter</title>
+<chapter id="chap-Fedora_Security_Team-Securing_TLS-OpenSSL">
+	<title>OpenSSL</title>
 	<para>
-		This is a test paragraph
+		<application>OpenSSL</application> is a popular and powerful open source toolkit for implementing SSL and TLS.  It's used to add SSL and TLS encryption to other popular software like <application>Apache</application>, <application>dovecot</application>, and <application>ejabberd</application>.
 	</para>
-	<section id="sect-Fedora_Security_Team-Securing_TLS-Test_Chapter-Test_Section_1">
-		<title>Test Section 1</title>
-		<para>
-			This is a test paragraph in a section
-		</para>
+	<section id="sect-Fedora_Security_Team-Securing_TLS-OpenSSL-Cipher_Categories">
+		<title>Cipher Categories</title>
+		<para><application>OpenSSL</application> groups cipher suites together into easy to define sets that make it easy to implement encryption that makes sense for individual systems.  These sets include <literal>HIGH</literal>, <literal>MEDIUM</literal>, <literal>LOW</literal>, <literal>EXPORT</literal>, and <literal>DEFAULT</literal>.  By utilizing one, or a combination, of these sets in configuration files, the systems administrator can define many ciphers at once.</para>
+		<section id="sect-Fedora_Security_Team-Securing_TLS-OpenSSL-Cipher_Categories-High">
+			<title>High Ciphers</title>
+			<para />
+		</section>
+                <section id="sect-Fedora_Security_Team-Securing_TLS-OpenSSL-Cipher_Categories-Medium">
+                        <title>Medium Ciphers</title>
+                        <para />
+                </section>
+                <section id="sect-Fedora_Security_Team-Securing_TLS-OpenSSL-Cipher_Categories-Low">
+                        <title>Low Ciphers</title>
+                        <para />
+                </section>
+                <section id="sect-Fedora_Security_Team-Securing_TLS-OpenSSL-Cipher_Categories-Export">
+                        <title>Export Ciphers</title>
+                        <para />
+                </section>
+                <section id="sect-Fedora_Security_Team-Securing_TLS-OpenSSL-Cipher_Categories-Default">
+                        <title>Default Ciphers</title>
+                        <para />
+                </section>
 	</section>
-	
-	<section id="sect-Fedora_Security_Team-Securing_TLS-Test_Chapter-Test_Section_2">
-		<title>Test Section 2</title>
-		<para>
-			This is a test paragraph in Section 2
-			<orderedlist>
-				<listitem>
-					<para>
-						This is a test listitem.
-					</para>
-				</listitem>
-			</orderedlist>
-		</para>
-	</section>
-
 </chapter>
 
diff --git a/Securing_TLS/en-US/Securing_TLS.xml b/Securing_TLS/en-US/Securing_TLS.xml
index b9a8245..9aa9582 100644
--- a/Securing_TLS/en-US/Securing_TLS.xml
+++ b/Securing_TLS/en-US/Securing_TLS.xml
@@ -7,6 +7,7 @@
 	<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 <!--	<xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
 	<xi:include href="mod_ssl.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+        <xi:include href="OpenSSL.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 	<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 	<index />
 </book>



More information about the security mailing list