-
Notifications
You must be signed in to change notification settings - Fork 3
/
ossl-dev-book.tex
39 lines (36 loc) · 945 Bytes
/
ossl-dev-book.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
\documentclass[oneside]{book}
\author{Matt Caswell}
\title{Developing Applications with OpenSSL}
\usepackage{color}
\usepackage{colortbl}
\usepackage{graphicx}
\usepackage[hidelinks]{hyperref}
\usepackage{listings}
\usepackage{xcolor}
\newcommand\todo[1]{\textcolor{red}{[TODO:#1]}}
\definecolor{LightGray}{gray}{0.9}
\lstdefinestyle{osslc}{
breaklines=true,
frame=single,
xleftmargin=\parindent,
language=C,
showstringspaces=false,
basicstyle=\footnotesize\ttfamily,
numbers=left,
numberstyle=\tiny,
captionpos=b
}
\begin{document}
\lstset{style=osslc}
\maketitle
\tableofcontents
\part{Introduction}
\chapter{About OpenSSL}
Add some text here.
\include{introduction/getting/getting}
\part{SSL/TLS/DTLS Application Programming}
\include{devel-tls/understand-tls/understand-tls}
\include{devel-tls/get-start/get-start}
\include{devel-tls/ciphersuites/ciphersuites}
\part{Cryptography Application Programming}
\end{document}