# HG changeset patch # User Josef "Jeff" Sipek # Date 1154930483 14400 # Node ID 199b4a4f57c0b6df409b30e405d6b563aef121ce Initial import diff -r 000000000000 -r 199b4a4f57c0 .hgignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Mon Aug 07 02:01:23 2006 -0400 @@ -0,0 +1,8 @@ +\.aux$ +\.dvi$ +\.log$ +\.out$ +\.pdf$ +\.ps$ +\.swp$ +~$ diff -r 000000000000 -r 199b4a4f57c0 Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Mon Aug 07 02:01:23 2006 -0400 @@ -0,0 +1,14 @@ +all: diagrams slideshow handout + +slideshow: + latex slideshow.tex + dvipdf -g2700x3450 -r300 slideshow.dvi + +handout: + latex handout.tex + dvipdf -g2700x3450 -r300 handout.dvi + +diagrams: + +clean: + rm -f *~ *.pdf *.ps *.dvi *.log *.out *.aux diff -r 000000000000 -r 199b4a4f57c0 slideshow.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slideshow.tex Mon Aug 07 02:01:23 2006 -0400 @@ -0,0 +1,70 @@ +\documentclass[pdf,contemporain,slideColor,colorBG,accumulate,nototal]{prosper} + +%\usepackage{macros-cp} + +\title{PGP} +\subtitle{The government is watching you...} +\author{Josef ``Jeff'' Sipek} +\institution{} +\slideCaption{PGP -- Josef ``Jeff'' Sipek} + +\begin{document} +\maketitle + + +% Intro to public key crypto +% - what's symetric cryptography? +% - caesar cipher example (rot13 variant) +% - (a) cypher +% - (b) key +% - what's asymetric crypto? +% - (a) cypher +% - (b) 2 keys! +% PGP/GPG's role +% - why is GPG useful? (for me) / why would I want to use it? +% - encrypt documents +% - sign documents +% - what do I need to know? +% - +% - how do you use it? +% - DEMO: sign a doc +% - DEMO: verify sig on a doc +% - DEMO: encrypt a doc +% - DEMO: decrypt a doc +% - There are frontends to make things easier +% what is keysigning? +% - How do you verify who a key belongs to? +% - web of trust +% - alice/bob/etc. web - built one sig at a time +% - +% what will happen next month? + + +% What is it? +\overlays{1}{ +\begin{slide}{What's SCM/VCS?} + \begin{itemize} + \item Source Code Management + \item Version Control Systems + \end{itemize} +\end{slide}} + +% What can it do? +\overlays{3}{ +\begin{slide}{What can it do?} + \begin{itemstep} + \item Keep revision history + \item Revert to any revision + \item Track down who changed particular line of code + \end{itemstep} +\end{slide}} + +\overlays{1}{ +\begin{slide}{Q\&A} + \vspace{1in} + \begin{center} + Questions? + \end{center} +\end{slide}} + +\end{document}