* svn-tag fuer 1.3.1 gesetzt
104
v1.3.1/documents/Makefile
Normal file
|
@ -0,0 +1,104 @@
|
|||
# validation program
|
||||
VALIDATE_BIN := validate
|
||||
# our self written documents
|
||||
LYX_FILES := $(shell find -name *.lyx -type f)
|
||||
# the tex output of lyx
|
||||
TEX_FILES := $(patsubst %.lyx,%.tex,$(LYX_FILES))
|
||||
# output files of lyx that are already processed by mod_html_files.py
|
||||
EXPORT_DIRS := $(shell for a in $(LYX_FILES); do echo -n "$$a" | sed "s%/\([^/]*\).lyx%/export-%"; echo "$$(basename $${a%.lyx})" ; done)
|
||||
# png files (get converted to eps)
|
||||
PNG_FILES := $(shell find -name *.png -type f)
|
||||
# converted eps files
|
||||
EPS_FILES := $(patsubst %.png,%.eps,$(PNG_FILES))
|
||||
# menue and footer files
|
||||
INC_FILES := $(wildcard *.inc) $(wildcard progress/*.inc)
|
||||
# the tex output of include files
|
||||
INC_TEX_FILES := $(patsubst %.inc,%.tex,$(INC_FILES))
|
||||
# look for lyx executable
|
||||
LYX_BIN = $(shell which lyx lyx-qt lyx-xform | head -1)
|
||||
|
||||
|
||||
# output parameters for latex2html
|
||||
LATEX2HTML_OPTS := -no_auto_link -split 0 -no_navigation -no_subdir -info 0 -style ../../cryptocd.css -local_icons -address 0
|
||||
|
||||
|
||||
# virtual targets that have different names than the produced files - they will alway be executed,
|
||||
# if another target depends on them (they do not look for timestamps)
|
||||
.PHONY : clean clean-targets install all
|
||||
|
||||
|
||||
# default target
|
||||
all: $(EXPORT_DIRS)
|
||||
|
||||
|
||||
# validate the html files
|
||||
validate: $(EXPORT_DIRS)
|
||||
@$(VALIDATE_BIN) $(shell find . -name *.html -type f)
|
||||
|
||||
|
||||
# copy the created files to the destination directory (usually outside of this directory tree)
|
||||
install: $(EXPORT_DIRS)
|
||||
echo $(EXPORT_DIRS)
|
||||
@if [ -z "$(CCD_BUILD_DIR)" ] ;\
|
||||
then echo "CCD_BUILD_DIR must be defined! (this should be done by the parent Makefile)" >&2 ;\
|
||||
false ;\
|
||||
fi
|
||||
@if [ ! -e "$(CCD_BUILD_DIR)" ] ;\
|
||||
then echo "CCD_BUILD_DIR ($(CCD_BUILD_DIR)) does not exist!" ;\
|
||||
false ;\
|
||||
fi
|
||||
mkdir -p "$(CCD_BUILD_DIR)/doku/macos"
|
||||
mkdir -p "$(CCD_BUILD_DIR)/doku/linux"
|
||||
mkdir -p "$(CCD_BUILD_DIR)/doku/windows"
|
||||
@# copy os-independent stuff
|
||||
for a in $(EXPORT_DIRS) ;\
|
||||
do if echo "$$(dirname $$a)" | grep -q "/common/" ;\
|
||||
then DIRNAME_MAC="$(CCD_BUILD_DIR)/doku/macos/$$(basename $$(dirname $$a))" ;\
|
||||
DIRNAME_LIN="$(CCD_BUILD_DIR)/doku/linux/$$(basename $$(dirname $$a))" ;\
|
||||
DIRNAME_WIN="$(CCD_BUILD_DIR)/doku/windows/$$(basename $$(dirname $$a))" ;\
|
||||
mkdir -p "$$DIRNAME_MAC" "$$DIRNAME_LIN" "$$DIRNAME_WIN" ;\
|
||||
cp -r "$$a/"* "$$DIRNAME_MAC" ;\
|
||||
cp -r "$$a/"* "$$DIRNAME_LIN" ;\
|
||||
cp -r "$$a/"* "$$DIRNAME_WIN" ;\
|
||||
fi ;\
|
||||
done
|
||||
@# copy os-specific stuff
|
||||
for a in $(EXPORT_DIRS) ;\
|
||||
do if echo "$$(dirname $$a)" | grep -q "/common/" ;\
|
||||
then true ;\
|
||||
else mkdir -p "$(CCD_BUILD_DIR)/doku/$$(dirname $$a)" ;\
|
||||
cp -r "$$a/"* "$(CCD_BUILD_DIR)/doku/$$(dirname $$a)" ;\
|
||||
fi ;\
|
||||
done
|
||||
|
||||
|
||||
clean-targets:
|
||||
-rm -r $(EXPORT_DIRS) 2>/dev/null
|
||||
|
||||
|
||||
# create tex files from lyx
|
||||
$(TEX_FILES): $(LYX_FILES)
|
||||
$(LYX_BIN) -e latex $*.lyx
|
||||
|
||||
|
||||
# original html-files, as they are created by lyx
|
||||
$(EXPORT_DIRS): $(TEX_FILES) $(INC_FILES) footer.asc
|
||||
-test -d "$@" && rm -rf "$@"
|
||||
mkdir -p "$@"
|
||||
latex2html $(LATEX2HTML_OPTS) -dir "$@" $(dir $@)/$(patsubst export-%,%.tex,$(notdir $@))
|
||||
@# die html-Datei wurde jetzt erstellt (inklusive Bilder)
|
||||
-#rm $(dir $@)WARNINGS $(dir $@)labels.pl $(dir $@)internals.pl $*.log 2>/dev/null
|
||||
-rm $@/$(patsubst export-%,%.css,$(notdir $@)) 2>/dev/null
|
||||
-rm $@/images.aux $@/images.log $@/images.out $@/images.pl $@/images.tex $@/missfont.log $@/WARNINGS $@/labels.pl 2>/dev/null
|
||||
python mod_html_files.py $@/$(patsubst export-%,%.html,$(notdir $@))
|
||||
@# add footer
|
||||
cat footer.asc >>$@/$(patsubst export-%,%.html,$(notdir $@))
|
||||
@# replace unix-like linebreaks with their DOS counterparts
|
||||
unix2dos $@/$(patsubst export-%,%.html,$(notdir $@))
|
||||
|
||||
|
||||
clean: clean-targets
|
||||
-rm $(TEX_FILES) 2>/dev/null
|
||||
-rm $(INC_TEX_FILES) 2>/dev/null
|
||||
-rm $(EPS_FILES) 2>/dev/null
|
||||
|
20
v1.3.1/documents/README.make
Normal file
|
@ -0,0 +1,20 @@
|
|||
Hier findest du Hinweise, zur Generierung der html-Dateien aus den Text-Quellen (geschrieben in LyX).
|
||||
Dies ist nur notwendig, falls du die CD mit veraenderten Texten weitergeben willst.
|
||||
|
||||
Benoetigte Programme:
|
||||
- lyx
|
||||
- make
|
||||
- latex
|
||||
- latex2html
|
||||
- zip
|
||||
(da fehlen bestimmt noch ein paar tex-Pakete ...)
|
||||
|
||||
----
|
||||
Q: Wie generiere ich die Seiten, wenn alles nach meinen Wuenschen veraendert wurde?
|
||||
A: cd doku && make
|
||||
|
||||
----
|
||||
Q: Wie raeum ich die ganzen Files auf, damit das Repository nicht so zugemuellt wird?
|
||||
A: cd doku && make clean
|
||||
|
||||
----
|
356
v1.3.1/documents/common/about/about.lyx
Normal file
|
@ -0,0 +1,356 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Über die CryptoCD
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Die CryptoCD ist ein Projekt mit einem klaren Ziel: Verschlüsselung für
|
||||
die Massen.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Wir wollen mit dieser CD möglichst vielen Menschen ermöglichen, mit einem
|
||||
Maximum an Privatsphäre öffentliche Netze (wie das Internet) benutzen zu
|
||||
können.
|
||||
Der Einstieg in das Thema Verschlüsselung und die folgenden Anleitungen
|
||||
sind bewusst einsteigerfreundlich gehalten.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Großen Wert legen wir darauf, Menschen mit verschiedensten Betriebssystemen
|
||||
zu erreichen.
|
||||
So wirken wir einer marktdominierten Ausgrenzung entgegen.
|
||||
Momentan beziehen sich die Anleitungen auf Linux, Mac OS X und Windows.
|
||||
Nebenbei bemerkt verwenden wir nur
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Freie Software}{http://www.fsf-europe.org/documents/freesoftware.
|
||||
de.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
, anders wäre eine solche CD wohl auch nicht realisierbar.
|
||||
Deswegen an dieser Stelle einen großen Dank an alle EntwicklerInnen der
|
||||
verwendeten Programme und Anleitungen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Weiterentwicklung
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Wir sind ständig bemüht die CryptoCD weiterzuentwickeln.
|
||||
Neben der Aktualisierung der verwendeten Software wollen wir vor allem
|
||||
die Benutzbarkeit verbessern.
|
||||
Das geht natürlich nicht ohne die Rückmeldungen unserer NutzerInnen.
|
||||
Deshalb freuen wir uns über dein Feedback.
|
||||
Schicke eine E-Mail an info@cryptocd.org
|
||||
\emph on
|
||||
|
||||
\emph default
|
||||
oder schau auf die
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{CryptoCD Projektseite}{http://cryptocd.org/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
Dort kannst du deine Kritik und Fragen loswerden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Die AutorInnen
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die CryptoCD wurde initiiert von
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Sense.Lab e.V.}{http://senselab.org}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
Darüber hinaus haben sich andere Menschen an der Entwicklung beteiligt
|
||||
und so einen wesentlichen Teil zur jetzigen Form beigetragen.
|
||||
In ungeordneter Reihenfolge waren und sind beteiligt:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Stefan Deser
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Ralf Kreutzmann
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Micha Reiser
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Während der Arbeit an einer neuen Version fallen ganz vielfältige Aufgaben
|
||||
an, bspw.
|
||||
das Verfassen neuer Anleitungen, die Integration neuer Programm-Versionen
|
||||
und natürlich auch das Korrekturlesen bestehender Inhalte.
|
||||
Falls du Lust verspürst, dich an einer Stelle zu beteiligen, schicke uns
|
||||
eine E-Mail: info@cryptocd.org.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="lizenz"></div>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Lizenz
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die Inhalte der CryptoCD unterliegen der
|
||||
\emph on
|
||||
|
||||
\begin_inset ERT
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Creative-Commons-Lizenz}{../../../lizenz/cc/deed.de.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\emph default
|
||||
:
|
||||
\emph on
|
||||
Namensnennung - NichtKommerziell - Weitergabe unter gleichen Bedingungen
|
||||
2.0 Deutschland
|
||||
\emph default
|
||||
.
|
||||
Durch diese Lizenz kannst du die CryptoCD:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
frei verwenden,
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
beliebig verändern,
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
und verändert weiterzugeben.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Als einzige Einschränkung gilt, dass die Nutzung ausschließlich nicht-kommerziel
|
||||
l erfolgen darf.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Alle Programme unterliegen entweder der
|
||||
\emph on
|
||||
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{GNU Public License}{http://www.gnu.de/gpl-ger.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\emph default
|
||||
oder der
|
||||
\emph on
|
||||
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Mozilla Public License}{http://www.mozilla.org/MPL/MPL-1.1.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\emph default
|
||||
, die dir ähnlich umfassende Freiheiten sichern.
|
||||
Die verwendeten Icons und Symbole sind originale oder modifizierte Versionen
|
||||
des
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Tango Desktop Project}{http://tango.freedesktop.org/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
620
v1.3.1/documents/common/asymmetrie/asymmetrie.lyx
Normal file
|
@ -0,0 +1,620 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme times
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize a4paper
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Asymmetrische Verschlüsselung am Beispiel erklärt
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Einführung ins Thema
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Das Prinzip der asymmetrischen Verschlüsselung beruht im Wesentlichen darauf,
|
||||
dass sich jedeR KommunikationspartnerIn jeweils ein Schlüsselpaar erzeugt.
|
||||
Einer der Schlüssel wird geheim gehalten, der so genannte
|
||||
\emph on
|
||||
private Schlüssel
|
||||
\emph default
|
||||
und der andere, der so genannte
|
||||
\emph on
|
||||
öffentliche Schlüssel
|
||||
\emph default
|
||||
wird jedem kommunikationswilligen Wesen zugänglich gemacht.
|
||||
Der große Vorteil dieses Verfahrens im Vergleich zur symmetrischen Verschlüssel
|
||||
ung
|
||||
\begin_inset Foot
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
Symmetrische Verschl
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
sselung ist die gebr
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"a
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
uchlichste Methode zur Geheimhaltung vor Dritten: Alle Teilnehmenden kennen
|
||||
den geheimen Code, mit dem sowohl ver- als auch entschl
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
sselt wird.
|
||||
Jeder Mensch, der den gemeinsamen Code kennt, kann die verschlüsselten
|
||||
Daten lesen und verstehen.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ist in der einfachen Verteilung des öffentlichen Schlüssels begründet.
|
||||
Dieser kann wirklich für jeden Menschen frei zugänglich sein, ohne dass
|
||||
dadurch das Verfahren unsicher wird.
|
||||
Aber dazu später mehr.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Im Folgenden wird zur einfacheren Darstellung der
|
||||
\emph on
|
||||
öffentliche Schlüssel
|
||||
\emph default
|
||||
als Schloss betrachtet und der
|
||||
\emph on
|
||||
private Schlüssel
|
||||
\emph default
|
||||
als passender Schlüssel für dieses Schloss.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename oeffentlicher_und_privater_schluessel.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Nehmen wir nun an, Bob möchte eine Nachricht an Alice schicken.
|
||||
Alice möchte aber nicht, dass ihr Vater lesen kann, was Bob für Schweinereien
|
||||
schreibt.
|
||||
Dazu wird sie also als Erstes einige Schlösser anfertigen, die nur von
|
||||
|
||||
\emph on
|
||||
einem
|
||||
\emph default
|
||||
(ihrem) Schlüssel geöffnet werden können.
|
||||
Dann wird sie ihre (offenen!) Schlösser an ihre Freunde verteilen, also
|
||||
auch an Bob.
|
||||
Bob hat nun ein offenes Schloss von Alice
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Besonders wichtig ist die korrekte
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"U
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
bergabe des Schlosses! Bob muss sich sicher sein k
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"o
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
nnen, ein Schloss von Alice zu benutzen.
|
||||
Bestenfalls telefoniert er mit Alice und l
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"a
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
sst sich das Schloss genauestens beschreiben.
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
, welches er zwar schließen kann, aber ohne passenden Schlüssel nicht wieder
|
||||
zu öffnen vermag (Alice wird ihren Schlüssel natürlich um keinen Preis
|
||||
der Welt rausrücken).
|
||||
Also fängt Bob an, seinen Brief zu schreiben, steckt ihn in eine Kiste
|
||||
und verschließt diese mit dem Schloss von Alice.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename verschluesselung.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Abgesehen von Alice ist nun niemand mehr in der Lage, die Kiste zu öffnen
|
||||
und den Brief zu lesen.
|
||||
Die Kiste macht sich nun auf die Reise und erreicht irgendwann Alice, welche
|
||||
mit ihrem Schlüssel das Schloss öffnet, den Brief der Kiste entnimmt, liest
|
||||
und froh ist, dass ihr Vater Bobs Brief nicht lesen konnte.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename entschluesselung.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Alice kann sich absolut sicher sein, dass niemand nach Verschließen der
|
||||
Kiste den Brief lesen konnte.
|
||||
Selbst Bob hatte nicht mehr die Möglichkeit, den Brief zu lesen, geschweige
|
||||
denn zu ändern, da nur Alice den passenden Schlüssel zum Schloss besitzt.
|
||||
Der angesprochene Vorteil der öffentlichen Schlüsselübertragung besteht
|
||||
also darin, dass prinzipiell jedeR ein Schloss von Alice benutzen kann
|
||||
um Kisten zu verschließen, aber nur sie in der Lage ist, diese wieder zu
|
||||
öffnen.
|
||||
Alice braucht sich zum Gedankenaustausch also nicht unter vier Augen mit
|
||||
Bob zu treffen, was ihr Vater nie zulassen würde.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Ein Nachteil besteht allerdings darin, dass Alice sich nicht sicher sein
|
||||
kann ob die Nachricht wirklich von Bob stammt oder ob irgendjemand
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Alice' Vater könnte sein Schloss Bob unterjubeln (als angebliches Schloss
|
||||
von Alice).
|
||||
Bob w
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
rde also die Kiste nicht mit dem Schloss von Alice verschlie
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"ss
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
en, sondern mit dem ihres Vaters.
|
||||
Dieser k
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"o
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
nnte die Kiste dann bequem mit seinem zugeh
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"o
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
rigen Schlüssel
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"o
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ffnen, den Brief lesen/manipulieren/zensieren und die Kiste mit Alice' Schloss
|
||||
(welches er ja auch hat, weil es per Definition
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"o
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ffentlich ist) an Alice weiterleiten.
|
||||
Davon w
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
rde Alice nichts mitbekommen, da sie wie immer eine Kiste mit einem Brief
|
||||
erh
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"a
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
lt, verschlossen mit ihrem Schloss.
|
||||
Dieses Vorgehen wird
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
brigens Man-in-the-Middle-Attacke genannt.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
einfach eines ihrer Schlösser genommen und damit irgendeine Kiste verschlossen
|
||||
hat.
|
||||
Dazu muss sich Bob noch was einfallen lassen (Unterschrift, Blutspritzer,
|
||||
\SpecialChar \ldots{}
|
||||
)
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Das Problem der f
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"a
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
lschungssicheren Unterschrift ist jedoch auch mit den Werkzeugen der asymmetrisc
|
||||
hen Verschl
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
sselung l
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"o
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
sbar.
|
||||
Dazu erstellt Alice mit ihrem privaten Schl
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ssel eine Signatur, anhand derer Bob mit Alice'
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"o
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ffentlichem Schl
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ssel die Herkunft der Nachricht
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
berpr
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
fen kann.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_asymmetrie.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
BIN
v1.3.1/documents/common/asymmetrie/entschluesselung.png
Normal file
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 18 KiB |
BIN
v1.3.1/documents/common/asymmetrie/verschluesselung.png
Normal file
After Width: | Height: | Size: 33 KiB |
241
v1.3.1/documents/common/chat/chat.lyx
Normal file
|
@ -0,0 +1,241 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Verschlüsselt Chatten mit Gaim
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
In diesem Kapitel erfährst du, wie du mit dem Programm Gaim verschlüsselt
|
||||
chatten kannst.
|
||||
Der Einfachheit halber wird dazu der Dienst ICQ benutzt - die Verschlüsselung
|
||||
klappt natürlich auch mit anderen von Gaim unterstützten Diensten (hier
|
||||
sei speziell der auf
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Freier Software}{http://www.germany.fsfeurope.org/documents/frees
|
||||
oftware.de.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
basierende Dienst
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Jabber}{http://www.jabber.org}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
erwähnt).
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Ähnlich
|
||||
\begin_inset Note Note
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
Ich (l) denke, dass dies irrefuehrend sein koennte: die gaim-Verschluesselung
|
||||
ist gaim-spezifisch - Mailverschluesselung ist jedoch standardisiert und
|
||||
implementationsunabhaengig.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
wie bei der
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{E-Mail-Verschlüsselung}{../email/email.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
funktioniert die Verschlüsselung nur, wenn dein Chat-Partner/deine Chat-Partner
|
||||
in ebenfalls Gaim benutzt
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Der allgemeinere Ansatz, Chat-Nachrichten per GnuPG zu verschlüsseln, würde
|
||||
diese Anleitung sprengen.
|
||||
Dazu brauchst du in jedem Fall Jabber und ein passendes Programm, wie z.B.
|
||||
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Gajim}{http://gajim.org}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
oder
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{PSI}{http://psi.affinix.com/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
und für Verschlüsselung eingerichtet hat.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Voraussetzungen:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
einen ICQ-Account mit den dazugehörigen Zugangsdaten
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
knapp 20 MB Festplattenspeicher
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
etwas Zeit
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die Anleitungen sind so aufgebaut, dass du sie der Reihe nach durchgehen
|
||||
kannst und zum Schluss ein komplett eingerichtetes Gaim inklusive der Möglichke
|
||||
it zur Verschlüsselung vorfindest.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_chat.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
BIN
v1.3.1/documents/common/chat_anwendung/bilder/gaim_plugin_03.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
v1.3.1/documents/common/chat_anwendung/bilder/gaim_plugin_04.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
v1.3.1/documents/common/chat_anwendung/bilder/gaim_plugin_05.png
Normal file
After Width: | Height: | Size: 10 KiB |
272
v1.3.1/documents/common/chat_anwendung/chat_anwendung.lyx
Normal file
|
@ -0,0 +1,272 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Verschlüsselt Chatten
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
mit Gaim
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Der letzte Schritt zeigt dir, wie du tatsächlich Nachrichten verschlüsseln
|
||||
kannst.
|
||||
Dazu wählst du aus der Liste einen Kontakt aus, der oder die ebenfalls
|
||||
Gaim-Encryption installiert hat.
|
||||
Klicke nun mit der rechten Maustaste auf diesen Kontakt und aktiviere im
|
||||
daraufhin erscheinenden Menü den Punkt
|
||||
\emph on
|
||||
Automatisches verschlüsseln aktivieren
|
||||
\emph default
|
||||
.
|
||||
Ab jetzt kann niemand außer dir und deinem Gegenüber eure Unterhaltung
|
||||
mitlesen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/gaim_plugin_03.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Automatisches Verschlüsseln aktivieren
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Im Nachrichtenfenster kann man die Verschlüsselung auch jederzeit ein- und
|
||||
ausschalten:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/gaim_plugin_04.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Hinweise
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Eine Nachricht zu versenden, wenn der Gegenüber offline ist führt zu Problemen:
|
||||
Die Nachricht kann gar nicht übertragen werden.
|
||||
Soll also eine Offline-Nachricht verschickt werden, muss das Plugin kurzzeitig
|
||||
deaktiviert werden (das geht aber ganz einfach per Klick auf den Button
|
||||
|
||||
\emph on
|
||||
Tx: klartext
|
||||
\emph default
|
||||
im Chat-Fenster).
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Wichtig ist, die Schlüsselfingerabdrücke auf sicherem Übertragungsweg zu
|
||||
vergleichen (werden über das Kontaktlisten-Menü
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<span class="kbd">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
Werkzeuge -> Einstellungen -> Plugins -> Gaim-Encryption
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</span>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
angezeigt).
|
||||
Das brauchst du mit jedem deiner Kontakte nur einmal tun.
|
||||
Ändert sich der Fingerabdruck später, frage auf gesichertem Weg nach, ob
|
||||
dein Gegenüber wirklich einen neuen Schlüssel benutzt.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_chat_anwendung.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
154
v1.3.1/documents/common/chat_programme/chat_programme.lyx
Normal file
|
@ -0,0 +1,154 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Benötigte Programme
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Verschlüsselt Chatten mit Gaim
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Voraussetzung für das verschlüsselte Chatten ist die korrekte Installation
|
||||
und Einrichtung der benötigten Programme.
|
||||
Als Chat-Programm wird dabei
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Gaim}{http://gaim.sf.net}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
benutzt.
|
||||
Gaim bietet den Vorteil, dass es nahezu alle verfügbaren Dienste (Jabber,
|
||||
ICQ, MSN, Yahoo, usw.) unterstützt und einfach bedienbar ist.
|
||||
Damit du mit Gaim verschlüsselt chatten kannst, muss ebenfalls das Plugin
|
||||
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Gaim-Encryption}{http://gaim-encryption.sourceforge.net/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
installiert werden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_chat_programme.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
146
v1.3.1/documents/common/einfuehrung/einfuehrung.lyx
Normal file
|
@ -0,0 +1,146 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language swedish
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Einführung ins Thema
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
In diesem Kapitel lernst du Gründe kennen, weshalb Verschlüsselung wichtig
|
||||
ist und wie sie funktioniert.
|
||||
Das hier erlangte Wissen erleichtert dir das Verständnis der Kapitel
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{E-Mails verschlüsseln}{../email/email.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
und
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Chats verschlüsseln}{../chat/chat.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_einfuehrung.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
120
v1.3.1/documents/common/email/email.lyx
Normal file
|
@ -0,0 +1,120 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme times
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize a4paper
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
In diesem Kapitel wird dir erklärt, wie du E-Mails verschlüsseln und entschlüsse
|
||||
ln kannst.
|
||||
Neben den erforderlichen Programmen benötigst du dazu vor allem ein Schlüsselbu
|
||||
nd.
|
||||
Es umfasst, wie ein reales Schlüsselbund, alle Schlüssel, um E-Mails auf-
|
||||
und zu zuschliessen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die Anleitungen sind so aufgebaut, dass du sie der Reihe nach durchgehen
|
||||
kannst und zum Schluß ein komplett eingerichtetes E-Mail-Programm inklusive
|
||||
der Möglichkeit zur Verschlüsselung vorfindest.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_email.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
125
v1.3.1/documents/common/email_anwendung/email_anwendung.lyx
Normal file
|
@ -0,0 +1,125 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\usepackage{hyperref}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Verschlüsselt Mailen
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Nachdem du erfahren hast, wie Schlüssel ausgetauscht werden, beschreibt
|
||||
das kommende Kapitel die konkrete Anwendung von Signatur und Ver- und Entschlüs
|
||||
selung bei E-Mails.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_email_anwendung.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 15 KiB |
|
@ -0,0 +1,149 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\usepackage{hyperref}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Eine E-Mail entschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Wenn du eine verschlüsselte E-Mail empfangen hast, erkennt Thunderbird dies
|
||||
automatisch und öffnet ein kleines Fenster, in das du deine Passphrase
|
||||
eintragen musst.
|
||||
Anschließend wird die E-Mail automatisch entschlüsselt:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/tb_email_verschluesseln03.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Eingabe der Passphrase
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{/home/phil/daten/sao/svn/cryptocd/trunk/documents/progress/progress_email_entschluesseln.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
236
v1.3.1/documents/common/email_programme/email_programme.lyx
Normal file
|
@ -0,0 +1,236 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Benötigte Programme
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die Programme, die du auf der CryptoCD findest, zeichnen sich durch ihre
|
||||
leichte Bedienbarkeit und die Unterstützung aller gängigen Betriebssysteme
|
||||
aus.
|
||||
Im Einzelnen handelt es sich um die folgenden Komponenten:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Das E-Mail-Programm: Thunderbird
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Ein E-Mail-Programm unterscheidet sich nicht wesentlich von einer
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Webmail-Oberfläche}{http://de.wikipedia.org/wiki/Webmail}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
, wie du sie sonst vielleicht benutzt, um deine E-Mails zu verwalten.
|
||||
Allerdings sind Webmail-Oberflächen im Allgemeinen nicht zur verschlüsselten
|
||||
Kommunikation geeignet.
|
||||
Der CryptoCD liegt das E-Mail-Programm
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Thunderbird}{http://www.thunderbird-mail.de/thunderbird/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
bei, an dem die Anleitungen ausgerichtet sind.
|
||||
Natürlich ist Verschlüsselung auch mit anderen E-Mail-Programmen möglich
|
||||
- auch in diesem Fall hilft dir die CryptoCD weiter: denn hast du erst
|
||||
verstanden wie E-Mail-Verschlüsselung funktioniert, ist es egal welches
|
||||
Programm du anschliessend benutzt.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Das Verschlüsselungsprogamm: GnuPG
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die eigentliche Verschlüsselung übernimmt das Programm
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{GnuPG}{http://www.gnupg.org/(de)/index.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
Es wird normalerweise durch die Eingabe von Befehlen auf der Kommandozeile
|
||||
gesteuert.
|
||||
Für viele ist das nicht sehr komfortabel - hier kommt Enigmail ins Spiel.
|
||||
Im Vergleich zur kommerziellen Verschlüsselungssoftware
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{PGP}{http://www.pgp.com/de/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
räumt dir GnuPG bei gleichem Funktionsumfang mehr Rechte ein.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Die Schnittstelle: Enigmail
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Enigmail}{http://www.thunderbird-mail.de/erweitern/erweiterungen
|
||||
/enigmail/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ist die Schnittstelle zwischen Thunderbird und GnuPG.
|
||||
Es stellt die notwendigen Funktionen bereit, um bequem per Mausklick von
|
||||
Thunderbird aus deine E-Mails zu verschlüsseln.
|
||||
\newline
|
||||
|
||||
\newline
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Sofern du bereits eines oder mehrere der Programme installiert und eingerichtet
|
||||
hast, kannst du den jeweiligen Abschnitt auch überspringen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_email_programme.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 25 KiB |
|
@ -0,0 +1,196 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\usepackage{hyperref}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Signaturen überprüfen
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die Überprüfung einer Signatur erfolgt durch Thunderbird automatisch, wenn
|
||||
du den öffentlichen Schlüssel des anderen Menschen
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{importiert}{../schluessel_import/schluessel_import.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
hast.
|
||||
Die Informationen zur Signatur zeigt Thunderbird im Kopfbereich einer signierte
|
||||
n E-Mail an.
|
||||
Wie in der folgenden Abbildung zu sehen, ist dieser Bereich farbig (hier
|
||||
hellblau) hinterlegt:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/thunderbird_signatur_pruefen01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Der hellblau hinterlegte Bereich zeigt die Informationen zur Signatur an
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Durch einen Klick auf das Plus vor
|
||||
\emph on
|
||||
OpenPGP
|
||||
\emph default
|
||||
werden weitere Informationen angezeigt:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/thunderbird_signatur_pruefen02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Signierte E-Mail
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{/home/phil/daten/sao/svn/cryptocd/trunk/documents/progress/progress_email_signatur_ueberpruefen.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 15 KiB |
221
v1.3.1/documents/common/email_signieren/email_signieren.lyx
Normal file
|
@ -0,0 +1,221 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\usepackage{hyperref}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Eine E-Mail signieren
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Mit Signatur wird eine digitale Unterschrift bezeichnet.
|
||||
Damit kann sichergestellt werden, dass mit deiner Signatur versehene E-Mails
|
||||
auch wirklich von dir stammen und auf dem Weg zum Empfänger/zur Empfängerin
|
||||
nicht verändert wurden.
|
||||
Und das ist nicht nur für geschäftliche Kommunikation wichtig.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Das Signieren funktioniert so: Verfasse wie gewohnt eine neue E-Mail.
|
||||
Klicke anschließend im Nachrichtenfenster auf die Schaltfläche
|
||||
\emph on
|
||||
OpenPGP
|
||||
\emph default
|
||||
und wähle nun die Option
|
||||
\emph on
|
||||
Nachricht unterschreiben
|
||||
\emph default
|
||||
aus:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/tb_email_verschluesseln01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Auswahl von Signatur und Verschlüsselung
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Der grüne Stift am unteren Rand des Nachrichtenfensters symbolisiert, dass
|
||||
diese E-Mail signiert verschickt wird:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/tb_email_verschluesseln02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Signatur und Verschlüsselung sind aktiv
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Beim anschließenden Versand der Nachricht, wirst du nach deiner Passphrase
|
||||
gefragt:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/tb_email_verschluesseln03.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Eingabe der Passphrase
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{/home/phil/daten/sao/svn/cryptocd/trunk/documents/progress/progress_email_signieren.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 15 KiB |
|
@ -0,0 +1,232 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\usepackage{hyperref}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Eine E-Mail verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Um eine E-Mail an jemanden zu verschlüsseln, musst du zuerst den öffentlichen
|
||||
Schlüssel des anderen Menschen importieren.
|
||||
Die Vorgehensweise dazu hast du
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{bereits kennengelernt}{../schluessel_import/schluessel_import.htm
|
||||
l}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
Ist das geschehen, kannst du die E-Mail wie üblich verfassen.
|
||||
Falls es dir wichtig ist, solltest du darauf achten, dass die Betreffzeile
|
||||
deiner E-Mail nichts über den Inhalt aussagt - denn sie wird nicht mit
|
||||
verschlüsselt.
|
||||
Sobald du fertig bist, kannst du durch Klicken auf die
|
||||
\emph on
|
||||
OpenPGP
|
||||
\emph default
|
||||
-Schaltfläche und Auswählen von
|
||||
\emph on
|
||||
Nachricht verschlüsseln
|
||||
\emph default
|
||||
deine E-Mail verschlüsseln:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/tb_email_verschluesseln01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Auswahl von Signatur und Verschlüsselung
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Der grüne Schlüssel am unteren Rand des Nachrichtenfensters symbolisiert,
|
||||
dass diese E-Mail verschlüsselt verschickt wird:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/tb_email_verschluesseln02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Signatur und Verschlüsselung sind aktiv
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Vor dem Versand der Nachricht, wirst du noch nach deiner Passphrase gefragt:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/tb_email_verschluesseln03.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Eingabe der Passphrase
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{/home/phil/daten/sao/svn/cryptocd/trunk/documents/progress/progress_email_verschluesseln.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 46 KiB |
|
@ -0,0 +1,254 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Ein Konto einrichten
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Verschlüsselt Chatten mit Gaim
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Nach dem Start von Gaim öffnen sich drei Fenster.
|
||||
Um ein ICQ-Konto einzurichten, klicke auf das Fenster mit dem Titel
|
||||
\emph on
|
||||
Konto hinzufügen
|
||||
\emph default
|
||||
:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/gaim_03.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Konto hinzufügen
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Als Protokoll ist bereits AIM/ICQ voreingestellt.
|
||||
In das Feld
|
||||
\emph on
|
||||
Benutzername
|
||||
\emph default
|
||||
trägst du deine ICQ-Nummer ein.
|
||||
Im darunter liegenden Feld kommt das Passwort und in das letzte Textfeld
|
||||
mit der Bezeichnung
|
||||
\emph on
|
||||
Alias
|
||||
\emph default
|
||||
ein beliebiger Nickname.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Damit Gaim sich dein Passwort merkt, kannst du bei der Option
|
||||
\emph on
|
||||
Passwort speichern
|
||||
\emph default
|
||||
ein Häkchen setzen.
|
||||
Mit
|
||||
\emph on
|
||||
Auto-Login
|
||||
\emph default
|
||||
verbindet sich Gaim bei jedem Start automatisch mit dem ICQ-Netzwerk.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Sind die Eingaben getätigt, werden sie mit einem Klick auf den entsprechenden
|
||||
Button gespeichert.
|
||||
Das neu angelegte Konto wird nun im Fenster
|
||||
\emph on
|
||||
Konten
|
||||
\emph default
|
||||
aufgelistet:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/gaim_04.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Konten
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Dieses Fenster kann nun auch geschlossen werden, so dass nur noch das Fester
|
||||
mit dem Titel
|
||||
\emph on
|
||||
Anmelden
|
||||
\emph default
|
||||
geöffnet ist:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/gaim_01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Das Gaim-Anmeldefenster
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Mit einen Klick auf die Schaltfläche
|
||||
\emph on
|
||||
Anmeldung
|
||||
\emph default
|
||||
verbindest du dich mit dem ICQ-Netzwerk.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_gaim_einrichtung_konto.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
|
@ -0,0 +1,272 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Gaim-Encryption einrichten
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Verschlüsselt Chatten mit Gaim
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Schritt für Schritt näherst du dich deinem Ziel: dem verschlüsselten Chatten.
|
||||
Dazu fehlt nur noch die Aktivierung des Plugins - aber die ist auch nicht
|
||||
schwieriger als alle bisherigen Schritte.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Die Aktivierung des Plugins
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Um das Plugin zu aktivieren, starte Gaim und öffne die Kontaktliste und
|
||||
klicke wähle aus dem Menü:
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<span class="kbd">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
Werkzeuge ->
|
||||
\emph on
|
||||
|
||||
\emph default
|
||||
Einstellungen
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</span>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename gaim_plugin_01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Einstellungen auswählen
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Es öffnet sich das Einstellungsfenster.
|
||||
Dort findest du unter dem Punkt
|
||||
\emph on
|
||||
Plugins
|
||||
\emph default
|
||||
auch den Eintrag
|
||||
\emph on
|
||||
Gaim-Encryption
|
||||
\emph default
|
||||
.
|
||||
Durch Setzen des Häkchens wird es aktiviert und es beginnt automatisch
|
||||
die Erzeugung eines Schlüsselpaars.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename gaim_plugin_02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Aktivierung des Plugins
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Damit ist die Einrichtung abgeschlossen.
|
||||
Im letzten Schritt wird dir erklärt, wie du eine verschlüsselte Nachricht
|
||||
verschicken kannst.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_gaim_encryption_einrichtung.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 104 KiB |
200
v1.3.1/documents/common/hilfe/hilfe.lyx
Normal file
|
@ -0,0 +1,200 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Hilfe
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Benutzung der CD
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die einzelnen Anleitungen sind so aufgebaut, dass du sie der Reihe nach
|
||||
durchgehen kannst.
|
||||
Am Ende einer jeden Seite findest du ein Menü, das dich zur darauf folgenden
|
||||
Seite weiterleitet.
|
||||
Solltest du eines der benötigten Programme bereits installiert und eingerichtet
|
||||
haben, kannst du die entsprechende Seite überspringen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
An einigen Stellen findest du Verweise auf Inhalte aus dem Internet.
|
||||
Solche Links werden durch ein angehängtes Symbol gekennzeichnet:
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Ein Beispiel-Link}{http://cryptocd.org}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsubsection
|
||||
Fragen und Antworten
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Warum werden Windows 95/98/ME nicht unterstützt?
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Microsoft hat den Support für diese Versionen im Juli 2006 eingestellt.
|
||||
Zwischenzeitlich entdeckte Sicherheitslücken werden also nicht mehr geschlossen.
|
||||
Aus diesem Grund raten wir von der Benutzung dieser Versionen ab.
|
||||
Eine gute Alternative, um Windows 95/98/ME zu ersetzen, ist
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Ubuntu}{http://www.ubuntuusers.de/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Weshalb sind keine Linux-Versionen der Programme auf der CD enthalten?
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Linux-Distributionen (wie Ubuntu, Debian oder SuSE) werden meistens auf
|
||||
CDs oder DVDs ausgeliefert.
|
||||
Alle benötigten Programme können von diesen Datenträgern installiert werden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Kritik loswerden / weitere Hilfe
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Wir sind bemüht die CryptoCD so sorgfältig wie möglich zu gestalten.
|
||||
Dennoch passiert es, dass sich Fehler in den Anleitungen einschleichen.
|
||||
Falls du einen solchen Fehler gefunden hast, lass es uns wissen.
|
||||
Dazu kannst du eine E-Mail an info@cryptocd.org schicken oder einen Eintrag
|
||||
in unserer
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Projektverwaltung}{https://systemausfall.org/trac/cryptocd}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
vornehmen.
|
||||
Dort kannst du auch Vorschläge zu neuen Funktionen und Programmen unterbreiten.
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
182
v1.3.1/documents/common/index/index.lyx
Normal file
|
@ -0,0 +1,182 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar_os_auswahl.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue_os_auswahl.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Willkommen zur CryptoCD
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die Anleitungen der CryptoCD sind auf die jeweiligen Betriebssysteme abgestimmt.
|
||||
Bevor du also loslegst, wähle dein Betriebssystem durch einen Klick auf
|
||||
einen der Computer.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div class="ie_center">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<table id="os_selection">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../../windows/index2/index2.html"><img src="../../pc_windows.png"
|
||||
alt="Windows" /></a></td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../../linux/index2/index2.html"><img src="../../pc_linux.png" alt="Linu
|
||||
x" /></a></td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../../macos/index2/index2.html"><img src="../../pc_mac.png" alt="Mac
|
||||
OS" /></a></td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</table>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</div>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
250
v1.3.1/documents/common/index2/index2.lyx
Normal file
|
@ -0,0 +1,250 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Abhörsicher Kommunizieren
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<table id="selection">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../einfuehrung/einfuehrung.html"><img src="../../einfuehrung.png"
|
||||
alt="Einführung" /></a></td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../einfuehrung/einfuehrung.html">Einführung</a><br/>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
Die Einführung erläutert, warum Verschlüsselung
|
||||
wichtig ist und wie sie funktioniert.</td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../email/email.html"><img src="../../email.png" alt="E-Mail" /></a></td
|
||||
>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../email/email.html">E-Mail</a><br/>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
E-Mails verschlüsselt verschicken und empfangen.</td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../chat/chat.html"><img src="../../chat.png" alt="Chat" /></a></td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../chat/chat.html">Chat</a><br/>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
Chat-Nachrichten verschlüsseln.</td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</table>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Diese CD soll dir ermöglichen, mit einem Maximum an Privatsphäre öffentliche
|
||||
Netze (wie das Internet) zu nutzen.
|
||||
Der Einstieg in das Thema Verschlüsselung und die folgenden Anleitungen
|
||||
sind dabei bewusst einsteigerfreundlich gehalten.
|
||||
Um zu Starten, klicke einfach eines der Themen oben oder im Menü an.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Wenn du mit der CryptoCD fertig bist, kannst du sie an deine Kommunikationspartn
|
||||
erInnen weitergeben - die
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Lizenz}{../about/about.html#lizenz}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
erlaubt es dir.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Viel Spaß!
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
282
v1.3.1/documents/common/links/links.lyx
Normal file
|
@ -0,0 +1,282 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{a4}
|
||||
\usepackage{html}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme times
|
||||
\graphics default
|
||||
\paperfontsize 12
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Weiterführende Lektüre
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Note Comment
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
Für Links folgenden Code nutzen:
|
||||
\begin_inset ERT
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Beschreibung}{Adresse}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Hier haben wir ein paar thematisch interessante Seiten verlinkt, die den
|
||||
Rahmen der CryptoCD sprengen würden.
|
||||
Viel Spaß damit.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Chaosradio}{http://chaosradio.ccc.de/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
: Beim Chaosradio handelt es sich um Radiosendungen des
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Chaos Computer Club}{http://www.ccc.de/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
, die einmal im Monat bei
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Radio Fritz}{http://www.fritz.de/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
veröffentlicht werden.
|
||||
Inhaltlich werden dabei verschiedene Themen angesprochen, die die Schnittstelle
|
||||
n von Technik und Gesellschaft betreffen.
|
||||
Wir haben dir im Folgenden einige Sendungen heraus gepickt:
|
||||
\end_layout
|
||||
|
||||
\begin_deeper
|
||||
\begin_layout Itemize
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{CR111}{http://chaosradio.de/cr111.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
: Diese Sendung gibt Tipps, wie deine Daten vor neugierigen Blicken geschützt
|
||||
werden können - unter anderem auch durch E-Mail-Verschlüsselung.
|
||||
Eine Sendung zu den aktuellen Einschränkungen des Fernmeldegeheimnisses
|
||||
durch Gesetzesänderungen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{CR88}{http://chaosradio.de/cr88.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
: Warum gibt es in der Gesellschaft kaum Widerstand gegen Überwachungstendenzen
|
||||
und wie ist der aktuelle Stand der Technik und der Gesetzgebung?
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{CR72}{http://chaosradio.de/cr72.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
: Eine Sendung über die Nebeneffekte der Punktesammelbonuskarten wie Payback.
|
||||
\end_layout
|
||||
|
||||
\end_deeper
|
||||
\begin_layout Itemize
|
||||
Eine umfangreiche deutschsprachige Hilfe zu GnuPG findet sich auf der
|
||||
\emph on
|
||||
|
||||
\emph default
|
||||
|
||||
\begin_inset ERT
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Raven Homepage}{http://kai.iks-jena.de/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
Dazu noch jede Menge Anleitungen für sichere Onlinekommunikation.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Die
|
||||
\begin_inset ERT
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Telekommunikations-Überwachungsverordnung}{http://de.wikipedia.o
|
||||
rg/wiki/Telekommunikations-
|
||||
\backslash
|
||||
%C3
|
||||
\backslash
|
||||
%9Cberwachungsverordnung}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
schreibt unter anderem vor, dass E-Mail-Provider ihre Kunden überwachen
|
||||
müssen.
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
|
@ -0,0 +1,253 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Mailservice-Anbieter
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Zur
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Einrichtung eines Kontos}{../thunderbird_einrichtung_konto/thund
|
||||
erbird_einrichtung_konto.html#mailserviceanbieter}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
in Thunderbird benötigst du einige Daten deines E-Mail-Providers.
|
||||
Nachfolgend findest du die wichtigsten Daten der meistbenutzten E-Mail-Provider.
|
||||
Sollte der von dir benutzte nicht dabei sein, findest du eine umfangreichere
|
||||
Liste auf
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{dieser Seite}{http://www.thunderbird-mail.de/hilfe/dokumentation
|
||||
1.5/konto_server.php}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
GMX
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
Web-Interface: www.gmx.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
SSL\InsetSpace ~
|
||||
möglich: nur für POP3
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
POP-Server: pop.gmx.net
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
IMAP-Server: nein
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
SMTP-Server: mail.gmx.net
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
web.de/freemail
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
Web-Interface: www.freemail.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
SSL\InsetSpace ~
|
||||
möglich: ja
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
POP-Server: pop3.web.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
IMAP-Server: imap.web.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
SMTP-Server: smtp.web.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
yahoo
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
Web-Interface: www.yahoo.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
SSL\InsetSpace ~
|
||||
möglich: ja
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
POP-Server: pop.mail.yahoo.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
IMAP-Server: pop.mail.yahoo.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
SMTP-Server: smtp.mail.yahoo.de
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
systemausfall.org
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
Web-Interface: webmail.systemausfall.org
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
SSL\InsetSpace ~
|
||||
möglich: ja, zwingend
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
POP-Server: mail.systemausfall.org
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
IMAP-Server: mail.systemausfall.org
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
SMTP-Server: mail.systemausfall.org
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_mailserviceanbieter.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 134 KiB |
After Width: | Height: | Size: 135 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 110 KiB |
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 154 KiB |
|
@ -0,0 +1,535 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language swedish
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Ein eigenes Schlüsselpaar erstellen
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die folgende Anleitung beschreibt die Erstellung eines eigenen Schlüsselpaars.
|
||||
Dein Schlüsselpaar gliedert sich in zwei Teile: einen privaten Schlüssel,
|
||||
den du tunlichst hütest wie deinen Augapfel und den öffentlichen Schlüssel,
|
||||
der für deine KorrespondenzpartnerInnen bestimmt ist.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Mit dem öffentlichen Schlüssel deines Adressaten verschlüsselst du eine
|
||||
E-Mail, welche nur der Empfänger/die Empfängerin mit Hilfe seines/ihres
|
||||
privaten Schlüssels wieder entschlüsseln kann.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Um eine verschlüsselte E-Mail versenden zu können, musst du erstmal den
|
||||
öffentlichen Schlüssel deiner Zielperson besitzen.
|
||||
Diese wiederum benötigt deinen öffentlichen Schlüssel, um dir verschlüsselt
|
||||
antworten zu können.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Ausführlichere Infos zur Funktionsweise der Verschlüsselung findest du auf
|
||||
der Seite
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Asymmetrische Verschlüsselung}{../asymmetrie/asymmetrie.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Ein Schlüsselpaar erstellen
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Öffne Thunderbird und starte die Schlüsselverwaltung über das Menü
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<span class="kbd">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
OpenPGP -> Schlüssel verwalten...
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</span>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\align center
|
||||
\begin_inset Graphics
|
||||
filename bilder/thunderbird_menue_schluessel_verwalten.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Die Schlüsselverwaltung starten
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Dein Schlüsselring ist derzeit noch leer.
|
||||
Um ein neues Schlüsselpaar zu erstellen, klicke im Menü der Schlüsselverwaltung
|
||||
auf
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<span class="kbd">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
Erzeugen -> Neues Schlüsselpaar...
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</span>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\align center
|
||||
\begin_inset Graphics
|
||||
filename bilder/em-schluessel_erzeugen01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Anlegen eines neuen Schlüsselpaars
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Zur Erstellung benötigst du folgende Informationen:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/em-schluessel_erzeugen02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Hier werden alle Informationen zum Schlüsselpaar gesammelt
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Enumerate
|
||||
Benutzer-ID: die E-Mail-Adresse mit der du künftig E-Mails ver- und entschlüssel
|
||||
n willst
|
||||
\end_layout
|
||||
|
||||
\begin_layout Enumerate
|
||||
Passphrase: so wird ein Passwortsatz bezeichnet
|
||||
\end_layout
|
||||
|
||||
\begin_deeper
|
||||
\begin_layout Itemize
|
||||
Die Passphrase sichert, dass wirklich nur du deine E-Mails ver- und entschlüssel
|
||||
n kannst.
|
||||
Sie besteht idealerweise aus mehreren Groß- und Kleinbuchstaben, Sonderzeichen
|
||||
und Zahlen (insgesamt mindestens fünfzehn Zeichen, besser wären zwanzig
|
||||
oder mehr).
|
||||
Dadurch kann sie kaum von Fremden erraten werden.
|
||||
Wichtig ist natürlich, dass du sie nicht vergisst.
|
||||
Um dies zu erleichtern gibt es viele Tricks, eine leicht merkbare, aber
|
||||
sichere Passphrase zu finden:
|
||||
\end_layout
|
||||
|
||||
\begin_deeper
|
||||
\begin_layout Itemize
|
||||
denke an ein Lied, das du gut kennst und nimm die Anfangsbuchstaben (oder
|
||||
die zweiten, ...
|
||||
usw.) jedes Wortes, dazwischen verteilst du Sonderzeichen und Zahlen
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
denke dir einen sinnlosen Satz aus und baue ein paar Rechtschreibfehler
|
||||
und Sonderzeichen ein, z.B: Dat Koerriwurst schmoeckt n8ch #imt &nd #ucker
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Genau dieses Beispiel solltest du natürlich nicht verwenden.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_deeper
|
||||
\end_deeper
|
||||
\begin_layout Standard
|
||||
Nachdem du alle Angaben überprüft hast, klicke auf das Register
|
||||
\emph on
|
||||
Erweitert
|
||||
\emph default
|
||||
(1) und erhöhe die
|
||||
\emph on
|
||||
Schlüsselstärke
|
||||
\emph default
|
||||
auf 4096 Bits (2) - somit bleiben deine E-Mails ein paar Jahrhunderte länger
|
||||
geheim :)
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\align center
|
||||
\begin_inset Graphics
|
||||
filename bilder/em-schluessel_erzeugen03.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Erweiterte Einstellungen
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Durch einen Klick auf die Schaltfläche
|
||||
\emph on
|
||||
Schlüsselpaar erzeugen
|
||||
\emph default
|
||||
beginnt die automatische Erzeugung deines Schlüsselpaares.
|
||||
Nun hast du einige Minuten Pause.
|
||||
Die kannst du z.B.
|
||||
mit Browsen im Internet verbringen.
|
||||
Nach der Erzeugung des Schlüsselpaares wirst du gefragt, ob du ein Wiederrufsze
|
||||
rtifikat erzeugen willst.
|
||||
Es ist empfehlenswert dies zu tun:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\align center
|
||||
\begin_inset Graphics
|
||||
filename bilder/em-schluessel_erzeugen06.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Bestätige die Erzeugung eines Widerrufszertifikats
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Nachdem du das Widerrufszertifikat gespeichert hast, ist die Schlüsselerzeugung
|
||||
vollständig abgeschlossen.
|
||||
Dein soeben erzeugtes Schlüsselpaar taucht nun auch in der Schlüsselverwaltung
|
||||
auf:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\align center
|
||||
\begin_inset Graphics
|
||||
filename bilder/em_schluesselverwaltung03.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Der neue Schlüssel erscheint in der Schlüsselverwaltung
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_schluessel_erstellen.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 154 KiB |
538
v1.3.1/documents/common/schluessel_export/schluessel_export.lyx
Normal file
|
@ -0,0 +1,538 @@
|
|||
#LyX 1.4.1 created this file. For more info see http://www.lyx.org/
|
||||
\lyxformat 245
|
||||
\begin_document
|
||||
\begin_header
|
||||
\textclass article
|
||||
\begin_preamble
|
||||
\usepackage{hyperref}
|
||||
\usepackage{html}
|
||||
\usepackage{german}
|
||||
\end_preamble
|
||||
\language ngerman
|
||||
\inputencoding auto
|
||||
\fontscheme default
|
||||
\graphics default
|
||||
\paperfontsize default
|
||||
\spacing single
|
||||
\papersize default
|
||||
\use_geometry false
|
||||
\use_amsmath 1
|
||||
\cite_engine basic
|
||||
\use_bibtopic false
|
||||
\paperorientation portrait
|
||||
\secnumdepth 3
|
||||
\tocdepth 3
|
||||
\paragraph_separation skip
|
||||
\defskip medskip
|
||||
\quotes_language english
|
||||
\papercolumns 1
|
||||
\papersides 1
|
||||
\paperpagestyle default
|
||||
\tracking_changes false
|
||||
\output_changes true
|
||||
\end_header
|
||||
|
||||
\begin_body
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{titlebar.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{menue.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<!-- main starts here -->
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="main">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Title
|
||||
Öffentliche Schlüssel weitergeben
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Damit andere Menschen dir verschlüsselte E-Mails schicken können, benötigen
|
||||
sie deinen öffentlichen Schlüssel.
|
||||
Die folgenden Schritte beschreiben, wie du diesen Schlüssel per E-Mail
|
||||
an deine KommunikationspartnerInnen verschicken oder per Datenträger weitergebe
|
||||
n kannst.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Per E-Mail weitergeben
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Auch bei der Weitergabe von öffentlichen Schlüsseln ist es am einfachsten
|
||||
sie per E-Mail zu versenden.
|
||||
Verfasse also eine neue E-Mail und wähle aus dem Menü der Nachricht folgenden
|
||||
Punkt aus:
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<span class="kbd">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
OpenPGP -> Meinen öffentlichen Schlüssel anhängen
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</span>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/schluessel_export_per_mail01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Deinen öffentlichen Schlüssel per E-Mail verschicken
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Mit dem Menüpunkt
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<span class="kbd">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
Öffentliche Schlüssel anhängen...
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</span>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
hast du die Möglichkeit weitere öffentliche Schlüssel deines Schlüsselbundes
|
||||
zu verschicken.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Per Datenträger weitergeben
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Um einen öffentlichen Schlüssel per Datenträger, bspw.
|
||||
einem USB-Stick, weiterzugeben, starte die Schlüsselverwaltung über das
|
||||
Thunderbird-Menü
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<span class="kbd">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
OpenPGP -> Schlüssel verwalten...
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</span>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\align center
|
||||
\begin_inset Graphics
|
||||
filename bilder/thunderbird_menue_schluessel_verwalten.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Starte die Schlüsselverwaltung
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Markiere deinen Schlüssel indem du ihn mit der Maus anklickst und wähle
|
||||
anschließend aus dem Menü der Schlüsselverwaltung den Punkt:
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<span class="kbd">
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
Datei -> Exportieren ...
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</span>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
aus:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/schluessel_export_per_datei01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Einen Schlüssel weitergeben
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Achte darauf, dass du wirklich nur deinen öffentlichen Schlüssel in eine
|
||||
Datei speicherst! Die folgende Frage solltest du also mit
|
||||
\emph on
|
||||
Nein
|
||||
\emph default
|
||||
beantworten:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/unbearbeitet/schluessel_export_per_datei02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Der private Schlüssel bleibt bei dir - beantworte die Frage mit
|
||||
\emph on
|
||||
Nein
|
||||
\emph default
|
||||
!
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Jetzt kannst du das Verzeichnis auswählen, in dem der öffentlicher Schlüssel
|
||||
gespeichert werden soll.
|
||||
Von dem Verzeichnis aus kannst du die Datei später auf einen Datenträger
|
||||
kopieren.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/progress_schluessel_exportieren.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 76 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 22 KiB |