commit 68ab0829cc7b96cdf48c7324aeeb90ade254c746 Author: giomba Date: Fri Feb 8 10:49:18 2019 +0100 Primo commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..206c809 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.pdf +*.aux +*.log + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7ec2d81 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +pdf: + pdflatex gpg-keysigning-party.tex + pdflatex gpg-keysigning-party.tex diff --git a/gpg-keysigning-party.tex b/gpg-keysigning-party.tex new file mode 100644 index 0000000..7877a13 --- /dev/null +++ b/gpg-keysigning-party.tex @@ -0,0 +1,65 @@ +\documentclass{article} +\usepackage[utf8]{inputenc} + +\usepackage{geometry} +\geometry{a4paper, margin=2cm} + + + +\title{GPG Party How To\\ + \large Prontuario per partecipare ad un keysigning party} +%~ \author{giomba} +%~ \date{24 Ottobre 2015} +%~ \institute{GOLEM Empoli} +\date{} + +\begin{document} + \pagenumbering{gobble} + %~ \section{Scambio e firma di chiavi per la creazione di una rete di fiducia} + + \maketitle + + \section{Prima} + \begin{itemize} + \item Generare coppia di chiavi\\ + \texttt{gpg --gen-key} + \item Annotarsi l'impronta (\emph{fingerprint}) della propria chiave\\ + \texttt{gpg --fingerprint } + \item Preparare bigliettini col proprio nome, indirizzo email + ID e impronta della propria chiave + \item Inviare chiave pubblica ad un server\\ + \texttt{gpg --keyserver pgp.mit.edu --send-key } + \end{itemize} + + \section{Durante} + \begin{itemize} + \item Recarsi ad un \emph{GPG Keysigning Party} con i bigliettini + e muniti di documento di identità + \item Scambiarsi la chiave con i presenti, controllando la loro identità + \end{itemize} + + \section{Dopo} + \begin{itemize} + \item Scaricare le chiavi\\ + \texttt{gpg --keyserver pgp.mit.edu --recv-key } + \item Controllare l'impronta\\ + \texttt{gpg --fingerprint } + \item Firmare\\ + \texttt{gpg --edit-key \\ > sign} + \item Rispedire al server\\ + \texttt{gpg --keyserver pgp.mit.edu --send-key } + \end{itemize} + + \section{Il resto dell'anno} + \begin{itemize} + \item Periodicamente aggiornare il portachiavi\\ + \texttt{gpg --keyserver pgp.mit.edu --refresh-keys} + \item Periodicamente prolungare la scadenza\\ + \texttt{gpg --edit-key \\ + > key \\ + > expire\\ + > key \\ + > expire} + \end{itemize} + +\end{document}