Version 1.4.3
154
v1.4.3/documents/Makefile
Normal file
|
@ -0,0 +1,154 @@
|
|||
# Validierungswerkzeuge
|
||||
VALIDATE1_BIN := validate
|
||||
VALIDATE1_OPTS :=
|
||||
VALIDATE1_DEB_PACKAGE := wdg-html-validator
|
||||
VALIDATE2_BIN := tidy
|
||||
VALIDATE2_OPTS := -o /dev/null -errors -quiet
|
||||
VALIDATE2_DEB_PACKAGE := tidy
|
||||
# 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
|
||||
|
||||
# clear language environment setting of the shell
|
||||
export LANG=
|
||||
|
||||
|
||||
# default target
|
||||
all: $(EXPORT_DIRS)
|
||||
|
||||
|
||||
# validate the html files
|
||||
validate: $(EXPORT_DIRS)
|
||||
@# Warnung, falls das erste Programm nicht gefunden wird
|
||||
@if which $(VALIDATE1_BIN) >/dev/null ;\
|
||||
then true ;\
|
||||
else echo >&2 ;\
|
||||
echo >&2 "*****************************************************************" ;\
|
||||
echo >&2 "* Could not find the html-checker '$(VALIDATE1_BIN)'! *" ;\
|
||||
echo >&2 "* Debian users should run 'apt-get install $(VALIDATE1_DEB_PACKAGE)'. *" ;\
|
||||
echo >&2 "*****************************************************************";\
|
||||
echo >&2 ;\
|
||||
fi
|
||||
@# Warnung, falls das zweite Programm nicht gefunden wird
|
||||
@if which $(VALIDATE2_BIN) >/dev/null ;\
|
||||
then true ;\
|
||||
else echo >&2 ;\
|
||||
echo >&2 "*****************************************************************" ;\
|
||||
echo >&2 "* Could not find the html-checker '$(VALIDATE2_BIN)'! *" ;\
|
||||
echo >&2 "* Debian users should run 'apt-get install $(VALIDATE2_DEB_PACKAGE)'. *" ;\
|
||||
echo >&2 "*****************************************************************";\
|
||||
echo >&2 ;\
|
||||
fi
|
||||
@# Abbruch, falls beide Programme nicht gefunden werden
|
||||
@if which $(VALIDATE1_BIN) >/dev/null || which $(VALIDATE2_BIN) >/dev/null ;\
|
||||
then true ;\
|
||||
else echo >&2 ;\
|
||||
echo >&2 "None of the html checkers was found!" ;\
|
||||
echo >&2 ;\
|
||||
false ;\
|
||||
fi
|
||||
@find . -name \*.html -type f | while read fname ;\
|
||||
do echo "Validating $$fname" ;\
|
||||
which $(VALIDATE1_BIN) >/dev/null && $(VALIDATE1_BIN) $(VALIDATE1_OPTS) "$$fname" ;\
|
||||
which $(VALIDATE2_BIN) >/dev/null && $(VALIDATE2_BIN) $(VALIDATE2_OPTS) "$$fname" ;\
|
||||
echo ;\
|
||||
done
|
||||
|
||||
|
||||
# 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)
|
||||
@if test -z $(LYX_BIN) ;\
|
||||
then echo >&2 ;\
|
||||
echo >&2 "**************************************************" ;\
|
||||
echo >&2 "* Could not find 'lyx'! *" ;\
|
||||
echo >&2 "* Debian users should run 'apt-get install lyx'. *" ;\
|
||||
echo >&2 "**************************************************";\
|
||||
echo >&2 ;\
|
||||
false ;\
|
||||
fi
|
||||
$(LYX_BIN) -e latex $*.lyx
|
||||
|
||||
|
||||
# original html-files, as they are created by lyx
|
||||
$(EXPORT_DIRS): $(TEX_FILES) $(INC_FILES) footer.asc mod_html_files.py
|
||||
-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.4.3/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
|
||||
|
||||
----
|
350
v1.4.3/documents/common/about/about.lyx
Normal file
|
@ -0,0 +1,350 @@
|
|||
#LyX 1.4.4 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 Standard
|
||||
Wir wollen mit dieser CD möglichst vielen Menschen ermöglichen, mit einem
|
||||
Maximum an Privatsphäre öffentliche Netzwerke (wie das Internet) benutzen
|
||||
zu können.
|
||||
Der Einstieg in das Thema und die einzelnen Anleitungen sind deshalb bewusst
|
||||
einstiegsfreundlich 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.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Weiterentwicklung
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Wir sind ständig bemüht, die CryptoCD weiter zu entwickeln.
|
||||
Dazu zählt die Aktualisierung der verwendeten Software und vor allem eine
|
||||
stetig verbesserte Benutzbarkeit.
|
||||
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 unsere
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Projektseite}{http://cryptocd.org/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
Dort kannst du deine Kritik und Fragen loswerden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Während der Arbeit an einer neuen Version fallen ganz vielfältige Aufgaben
|
||||
an, z.B.
|
||||
das Verfassen neuer Installationsanleitungen, die Integration weiterer
|
||||
Themengebiete, sowie das Korrekturlesen bestehender Inhalte.
|
||||
Fühl dich frei, einen Teil zur CryptoCD beizutragen.
|
||||
Wir freuen uns über jede Partizipation.
|
||||
\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 weitere 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
|
||||
Rolf Meinecke
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Ralf Kreutzmann
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Micha Reiser
|
||||
\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 Texte der CryptoCD unterliegen einer
|
||||
\emph on
|
||||
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Creative-Commons-Lizenz}{../../../lizenz/cc/deed.de.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\emph default
|
||||
:
|
||||
\emph on
|
||||
Namensnennung - 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 und
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
verändert weiter geben.
|
||||
\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.
|
||||
Den Quellcode der verwendeten Programme kannst du über die jeweilige Projektsei
|
||||
te beziehen.
|
||||
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
|
183
v1.4.3/documents/common/chat/chat.lyx
Normal file
|
@ -0,0 +1,183 @@
|
|||
#LyX 1.4.3 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 Standard
|
||||
In diesem Kapitel erfährst du, wie du mit dem Programm Gaim bzw.
|
||||
Pidgin
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Das Programm Gaim wurde vor kurzem in Pidgin umbenannt.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
verschlüsselt chatten kannst.
|
||||
Dabei wird beispielhaft der Dienst ICQ benutzt - die Verschlüsselung klappt
|
||||
natürlich auch mit anderen von Gaim/Pidgin unterstützten Diensten (wie
|
||||
Jabber, MSN, Yahoo, usw.).
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Ähnlich wie bei der E-Mail-Verschlüsselung wird ein asymmetrisches Verfahren
|
||||
mit öffentlichem und geheimen Schlüssel verwendet, um deine Gespräche geheim
|
||||
zu halten.
|
||||
Eine Beschreibung der Funktionsweise des asymmetrischen Verschlüsselungsverfahr
|
||||
ens findest du im Abschnitt
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Wie Verschlüsselung funktioniert}{../verschluesselung_funktion/v
|
||||
erschluesselung_funktion.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Voraussetzungen:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Du brauchst ein Konto bei einem Chat-Dienst (wie Jabber, ICQ, MSN, Yahoo,
|
||||
usw.) mit den dazugehörigen Zugangsdaten,
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
knapp 20 MB Festplattenspeicher,
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
etwas Zeit und
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
eine Chat-Partnerin die ebenfalls Gaim/Pidgin benutzt und es für Verschlüsselung
|
||||
anhand dieser Anleitung eingerichtet hat.
|
||||
\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/Pidgin inklusive
|
||||
der Möglichkeit zur Verschlüsselung vorfindest.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/chat.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
BIN
v1.4.3/documents/common/chat_anwendung/bilder/gaim_plugin_03.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
v1.4.3/documents/common/chat_anwendung/bilder/gaim_plugin_04.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
v1.4.3/documents/common/chat_anwendung/bilder/gaim_plugin_05.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
265
v1.4.3/documents/common/chat_anwendung/chat_anwendung.lyx
Normal file
|
@ -0,0 +1,265 @@
|
|||
#LyX 1.4.3 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 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-/Pidgin-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
|
||||
Die Verschlüsselung kann auch jederzeit im Nachrichtenfenster bequem ein-
|
||||
und ausgestellt werden.
|
||||
Dazu ist lediglich ein Klick auf das Schloss-Symbol im Chatfenster notwendig:
|
||||
\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 die Verschlüsselung
|
||||
deaktiviert werden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Wichtig ist, die Schlüsselfingerabdrücke auf sicherem Übertragungsweg zu
|
||||
vergleichen (werden über das Buddy-Listen-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 -> Plugins -> Gaim-/Pidgin-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 (es erscheint ein Hinweis von Gaim/Pidgin)
|
||||
, 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/chat_anwendung.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
173
v1.4.3/documents/common/chat_programme/chat_programme.lyx
Normal file
|
@ -0,0 +1,173 @@
|
|||
#LyX 1.4.3 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
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Voraussetzung für das verschlüsselte Chatten ist die korrekte Installation
|
||||
und Einrichtung der benötigten Programme.
|
||||
Falls du die Möglichkeit hast, lade dir die aktuelle Version von der entspreche
|
||||
nden Projektseite herunter.
|
||||
Im Einzelnen handelt es sich um die folgenden Komponenten:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Das Chat-Programm: Gaim/Pidgin
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Als Chat-Programm wird
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Gaim/Pidgin}{http://pidgin.im}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
benutzt.
|
||||
Es bietet den Vorteil, dass es nahezu alle verfügbaren Dienste (Jabber,
|
||||
ICQ, MSN, Yahoo, usw.) unterstützt, für viele Betriebssysteme verfügbar
|
||||
ist und obendrein eine einfache Bedienbarkeit aufweist.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Das Verschlüsselungsprogramm: Gaim- bzw.
|
||||
Pidgin-Encryption
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Gaim-/Pidgin-Encryption}{http://pidgin-encrypt.sourceforge.net/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ist ein Plugin für Gaim/Pidgin das es ermöglicht, Chat-Nachrichten zu ver-
|
||||
und entschlüsseln.
|
||||
Es ist einfach zu bedienen und sicher.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/chat_programme.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
BIN
v1.4.3/documents/common/einfuehrung/bilder/netzschema.png
Normal file
After Width: | Height: | Size: 39 KiB |
7927
v1.4.3/documents/common/einfuehrung/bilder/netzschema.svg
Normal file
After Width: | Height: | Size: 337 KiB |
875
v1.4.3/documents/common/einfuehrung/einfuehrung.lyx
Normal file
|
@ -0,0 +1,875 @@
|
|||
#LyX 1.4.3 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
|
||||
Warum soll ich überhaupt meine Privatsphäre schützen?
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Einführung in das Thema
|
||||
\end_layout
|
||||
|
||||
\begin_layout Quote
|
||||
\begin_inset Quotes sld
|
||||
\end_inset
|
||||
|
||||
Die Sicherheit von elektronischer Post, die über das Internet verschickt
|
||||
wurde, kann mit genau drei Worten beschrieben werden: es gibt keine.
|
||||
\begin_inset Quotes srd
|
||||
\end_inset
|
||||
|
||||
-- Matt Bishop
|
||||
\begin_inset Note Note
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
"The security of electronic mail sent through the Internet may be described
|
||||
in exact three words: there is none."
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Du fragst dich vielleicht, warum gerade
|
||||
\emph on
|
||||
du
|
||||
\emph default
|
||||
dir die Mühe machen sollst, dich durch diese CD zu arbeiten? Gedanken wie:
|
||||
|
||||
\emph on
|
||||
|
||||
\begin_inset Quotes srd
|
||||
\end_inset
|
||||
|
||||
Ich hab doch nichts zu verbergen! Wer sollte sich denn für mich interessieren?
|
||||
\begin_inset Quotes srd
|
||||
\end_inset
|
||||
|
||||
|
||||
\emph default
|
||||
gehen dir beim Thema Überwachung / Verschlüsselung durch den Kopf? Und überhaupt
|
||||
ist dir das alles viel zu wissenschaftlich, abgehoben und paranoid?
|
||||
\newline
|
||||
Dann
|
||||
solltest du dir die Zeit nehmen, den folgenden Text zu lesen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
Neue Medien - neue Möglichkeiten
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Kommunikation in Zeiten der neuen Medien unterscheidet sich in mehreren
|
||||
Punkten grundlegend von Medien wie klassischer Briefpost.
|
||||
Ein wesentlicher Unterschied ist die Tatsache, dass sie komplett digital
|
||||
verläuft.
|
||||
Somit ist es sehr einfach, zehntausende von Nachrichten automatisch nach
|
||||
bestimmten Kriterien durchsuchen zu lassen.
|
||||
Dazu reicht ein einziger Mensch mit den entsprechenden Kenntnissen.
|
||||
Dieser Mensch kann an vielen Stellen sitzen, da im Internet Daten über
|
||||
ein Netz von Stationen weitergereicht werden, bis sie ihr Ziel erreichen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/netzschema.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Viele Wege führen durch das Netz
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Das Mitlesen und Nachverfolgen von E-Mails ist prinzipiell an jedem Knoten
|
||||
möglich, und das geschieht nicht selten
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
weitere Informationen:
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Abh
|
||||
\backslash
|
||||
"oren im Jahr 2000}{http://www.heise.de/tp/deutsch/inhalt/te/2833/1.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
und
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Open your eyes, open your mind}{http://hp.kairaven.de/miniwahr/i
|
||||
ndex.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
: Seit dem 1.
|
||||
Januar 2005 sind beispielsweise alle E-Mail-Provider mit mehr als 1000
|
||||
KundInnen verpflichtet, technische Lösungen vorzuhalten, die staatlichen
|
||||
Institutionen den Zugriff auf den gesamten E-Mailverkehr der KundInnen
|
||||
ermöglichen.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Neben den staatlich organisierten Aktionen gibt es eine Reihe anderer Schnüffler.
|
||||
Hierbei spielen wirtschaftliche Interessen oft eine große Rolle.
|
||||
So schnüffeln bezahlte Cracker, analysebetreibende Firmen oder auch gelangweilt
|
||||
e Administratoren in deinen Netzspuren.
|
||||
Und, auch das ist ein Unterschied zur klassischen Post: an der E-Mail ist
|
||||
- im Gegensatz zu einem geöffneten Brief - nicht erkennbar, dass sie abgefangen
|
||||
und gelesen wurde.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
SIE beobachten dich...
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Wer sich überwacht glaubt, der handelt eher im Rahmen der sozialen Erwünschtheit
|
||||
und ist somit nicht bloß kontrollierbar (im Falle einer tatsächlichen Überwachu
|
||||
ng), sondern indirekt auch schon einer Manipulation erlegen.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Tatsächlich setzen z.B.
|
||||
viele öffentliche Kameras in Einkaufszentren und anderen Einrichtungen
|
||||
auf gerade diesen Effekt.
|
||||
Indem die Kameras auffällig platziert werden, überlegen sich die Menschen
|
||||
in ihrem Blickfeld zweimal, ob sie aus der Rolle fallen, in der sie sich
|
||||
gesellschaftlich befinden (sollen).
|
||||
Es entsteht ein Normierungsdruck
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Ein lesenswerter Text zu dieser Thematik ist
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Rundum sicher}{http://www.citycrimecontrol.net/texte/rundum.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
von Christian V
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"a
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
hling.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
, der die eigene Entscheidungsfreiheit einschränken kann.
|
||||
Verschlüsselte und anonymisierte Kommunikation befreit die Kommunikationspartne
|
||||
rInnen aus dieser Situation.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Es muss dich nicht wirklich jemand überwachen.
|
||||
Der bloße Verdacht, dass es so sein könnte, reicht schon aus, um dein Verhalten
|
||||
zu beeinflussen.
|
||||
Das hat 1983 schon das Bundesverfassungsgericht im so genannten Volkszählungsur
|
||||
teil
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Mit diesem
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Urteil}{http://de.wikipedia.org/wiki/Volksz
|
||||
\backslash
|
||||
%C3
|
||||
\backslash
|
||||
%A4hlungsurteil}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
wurde u.a.
|
||||
das Grundrecht der informationellen Selbstbestimmung geschaffen.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
erklärt:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Quotation
|
||||
\begin_inset Quotes sld
|
||||
\end_inset
|
||||
|
||||
Wer unsicher ist, ob abweichende Verhaltensweisen jederzeit notiert und
|
||||
als Information dauerhaft gespeichert, verwendet oder weitergegeben werden,
|
||||
wird versuchen, nicht durch solche Verhaltensweisen aufzufallen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Quotation
|
||||
Wer damit rechnet, dass etwa die Teilnahme an einer Versammlung oder einer
|
||||
Bürgerinitiative behördlich registriert wird und dass ihm/ihr dadurch Risiken
|
||||
entstehen können, wird möglicherweise auf eine Ausübung seiner entsprechenden
|
||||
Grundrechte (Art.
|
||||
8, 9 GG) verzichten.
|
||||
Dies würde nicht nur die individuellen Entfaltungschancen des Einzelnen
|
||||
beeinträchtigen, sondern auch das Gemeinwohl, weil Selbstbestimmung eine
|
||||
elementare Funktionsbedingung eines auf Handlungsfähigkeit und Mitwirkungsfähig
|
||||
keit seiner Bürger begründeten freiheitlichen demokratischen Gemeinwesens
|
||||
ist.
|
||||
\begin_inset Quotes srd
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
\begin_inset Quotes sld
|
||||
\end_inset
|
||||
|
||||
Ich hab nix zu verbergen!
|
||||
\begin_inset Quotes srd
|
||||
\end_inset
|
||||
|
||||
?
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Auf jedem Menschen liegt ein (mehr oder weniger stark gefühlter) Druck,
|
||||
seiner eigenen Rolle zu entsprechen.
|
||||
Die Tatsache, dass du beobachtet wirst, wird in den meisten Fällen ein
|
||||
Unbehagen in dir hervorrufen und du wirst dein Verhalten ändern.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Ist es für dich nicht auch ein komisches Gefühl, zu wissen, dass irgendein
|
||||
Sicherheitsmensch dir gerade zuschaut, während du in der Nase bohrst? Kennst
|
||||
du das, wenn deine neue Liebe dich in der Kneipe anschaut und du ein möglichst
|
||||
gutes Bild von dir vermitteln möchtest? Magst du die Vorstellung, dass
|
||||
alle in deiner Umgebung wissen, was auf deinem Gehaltsnachweis oder in
|
||||
deiner Krankenakte steht? Warum schließt du die Tür, wenn du auf der Toilette
|
||||
sitzt? Hast du was zu verbergen, Drogenkonsum oder so?!
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Für den Wunsch nach Privatsphäre muss mensch sich nicht rechtfertigen.
|
||||
Ein wichtiges Element in einer Demokratie ist die Unschuld bis zum Beweis
|
||||
des Gegenteils.
|
||||
Eine Gesellschaft kann ohne dieses Prinzip nicht frei sein.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Es gibt immer wieder Menschen, die Verschlüsselung und Anonymisierung mit
|
||||
Kriminalität gleichsetzen.
|
||||
Diese Menschen vergessen, dass die Umkehrung der
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Unschuldsvermutung}{http://de.wikipedia.org/wiki/Unschuldsvermut
|
||||
ung}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
unser Rechtesystem unterwandert und eigentlich als krimineller Akt geahndet
|
||||
werden müsste.
|
||||
Die eingangs erwähnten Beispiele konnten hier hoffentlich für Klarheit
|
||||
sorgen.
|
||||
Für deine persönliche Freiheit und das Recht auf Privatsphäre kannst und
|
||||
solltest du deine Daten, bspw.
|
||||
durch E-Mail-Verschlüsselung schützen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
Im Anti-Terror-Wahn
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die tägliche Dosis Terror-Meldungen, welche uns aus der ganzen Welt durch
|
||||
die Massenmedien in das Wohnzimmer geschaufelt wird, regt auch PolitikerInnen
|
||||
zu ungeahnter Emsigkeit an.
|
||||
In zahlreichen Gesetzesentwürfen
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
weitere Informationen:
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{H
|
||||
\backslash
|
||||
"ort der Staat bald alles?}{http://www.heise.de/tp/r4/html/result.xhtml?url=/tp/r4/
|
||||
artikel/18/18021/1.html&words=Gesetz
|
||||
\backslash
|
||||
%20
|
||||
\backslash
|
||||
%DCberwachung}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
und
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Die
|
||||
\backslash
|
||||
"Uberwachungsspielr
|
||||
\backslash
|
||||
"aume des Rechtsstaates}{http://hp.kairaven.de/law/index.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
wird ein Ausbau der staatlichen Überwachungs- und Kontrollmöglichkeiten
|
||||
gefordert, um geplante terroristische Aktivitäten bereits in ihrer Planungsphas
|
||||
e aufzuspüren.
|
||||
In diesem Zusammenhang wird auch die zunehmende Verbreitung von E-Mail-Verschlü
|
||||
sselung kritisiert
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Verfassungsschutzbericht von 1996
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
Es ist zu befürchten, dass bald auch Gesetzesvorschläge eingereicht werden,
|
||||
die ein Verbot von starken Verschlüsselungswerkzeugen, wie z.B.
|
||||
in den USA
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
starke Verschl
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
sselung f
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"a
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
llt in den USA unter das Kriegswaffenkontrollgesetz mit den entsprechenden
|
||||
Konsequenzen
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
, vorsehen.
|
||||
Dass diese Verbote jedoch ganz andere Personengruppen im "Visier" haben,
|
||||
zeigen folgende Betrachtungen:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Neben kryptographischen Verfahren, wie die hier vorgestellte E-Mail-Verschlüssel
|
||||
ung, existieren auch
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{steganographische}{http://rhlx01.rz.fht-esslingen.de/projects/kry
|
||||
pto/stega/stega.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
Verfahren um den Inhalt von Nachrichten zu verschleiern.
|
||||
Hierbei werden die Texte beispielsweise in Bild- oder Ton-Dateien versteckt.
|
||||
Die eingeweihte Empfangsseite kann dann aus dem Bild oder der Tonspur die
|
||||
verborgene Nachricht extrahieren.
|
||||
Diese Art der Nachrichtenübermittlung bietet den Vorteil, dass es für nicht
|
||||
eingeweihte Menschen keine Möglichkeit gibt, zu erkennen, ob ein Bild eine
|
||||
versteckte Nachricht enthält oder eben "nur" ein Bild ist.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Egal wie stark also die Überwachung des E-Mail-Verkehrs ist: solange es
|
||||
möglich ist, Daten von A nach B zu senden, können auch unerkannt Nachrichten
|
||||
transportiert werden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Potentielle Terroristen sind sich natürlich bewusst, dass sie abgehört werden
|
||||
könnten.
|
||||
Sie werden also entsprechende Sicherheitsvorkehrungen treffen, um dem wachsamen
|
||||
Beobachter zu entgehen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Im Netz der Datenkraken landen dann nur diejenigen, die ihre Privatsphäre
|
||||
nicht schützen wollen oder können.
|
||||
Mit dieser Entwicklung werden elementare Grundrechte
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Art.
|
||||
5 Grundgesetz [Meinungsfreiheit] sowie das Grundrecht auf
|
||||
\begin_inset Quotes erd
|
||||
\end_inset
|
||||
|
||||
informationelle Selbstbestimmung
|
||||
\begin_inset Quotes erd
|
||||
\end_inset
|
||||
|
||||
welches auf Art.
|
||||
2 GG [Pers
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"o
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
nlichkeitsrecht] und Art.
|
||||
1 GG [Menschenw
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"u
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
rde; Grundrechtsbindung der staatlichen Gewalt] basiert
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
unserer Verfassung abgeschafft, ohne die das Fortbestehen einer freiheitlichen
|
||||
Gesellschaft nicht möglich ist.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Quote
|
||||
\begin_inset Quotes sld
|
||||
\end_inset
|
||||
|
||||
Wer die Freiheit aufgibt, um Sicherheit zu gewinnen, wird am Ende beides
|
||||
verlieren.
|
||||
\begin_inset Quotes srd
|
||||
\end_inset
|
||||
|
||||
-- Benjamin Franklin, 1759
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
\begin_inset Quotes erd
|
||||
\end_inset
|
||||
|
||||
Every step you take, every move you make - I'll be watching you!
|
||||
\begin_inset Quotes srd
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Das Zitat aus dem gleichnamigen Song der Band The Police lässt sich direkt
|
||||
auf das Surfen im Internet übertragen.
|
||||
Letzteres ist schon lange nicht mehr anonym und war es wohl auch noch nie.
|
||||
Jede Datenbewegung im Internet wird an verschiedenen Stellen genau dokumentiert.
|
||||
So weiß beispielsweise der Betreiber eines Online-Shops wer sich seine
|
||||
Seite wann und von wo aus angeschaut hat.
|
||||
Nachzulesen ist dies in den so genannten Logdateien, die ständig beim Datenverk
|
||||
ehr im Internet anfallen.
|
||||
Du fragst dich, wer solche riesigen Datenmengen eigentlich auswerten soll?
|
||||
Da die Daten elektronisch vorliegen ist es auch hier sehr einfach mit Hilfe
|
||||
eines kleinen Programms die Logdateien nach bestimmten Merkmalen zu durchsuchen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Während der Shopbetreiber nur Aussagen über seine Seite machen kann, kennt
|
||||
dein Internetanbieter dein Surfverhalten bis ins Detail.
|
||||
Denn über ihn werden alle deine Daten ins Internet geleitet.
|
||||
Normalerweise werden diese Verbindungsdaten gelöscht, sobald sie nicht
|
||||
mehr benötigt werden.
|
||||
Doch auch das wird sich bald ändern.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Durch die europäische
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Richtlinie über die Vorratsdatenspeicherung}{http://de.wikipedi
|
||||
a.org/wiki/Richtlinie_
|
||||
\backslash
|
||||
%C3
|
||||
\backslash
|
||||
%BCber_die_Vorratsdatenspeicherung}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
werden wahrscheinlich noch im Jahr 2007 alle Telefon- und Internetanbieter
|
||||
gezwungen, anfallende Verbindungsdaten sechs Monate lang zu speichern um
|
||||
sie Behörden für Strafverfolgungszwecke zur Verfügung stellen zu können.
|
||||
Mit diesem Gesetz werden alle InternetnutzerInnen unter Generalverdacht
|
||||
gestellt.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Du schreibst gerade eine Hausarbeit über den Islam und recherchierst dazu
|
||||
auf verschiedenen Seiten und gibst passende Stichworte in eine Suchmaschine
|
||||
ein? Was denkst du welchen Eindruck deine Verbindungsdaten von dir vermitteln?
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
An dieser Stelle sei nochmal darauf hingewiesen, dass der Staat nicht die
|
||||
einzige Instanz ist, die Zugriff auf deine Verbindungsdaten erlangen kann.
|
||||
Geheimdienste, gut bezahlende Unternehmen, böswillige Cracker, dein Arbeitgeber
|
||||
, Freunde von Freunden usw.
|
||||
können sich ebenso Zugang zu diesen Daten verschaffen.
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
Weißes Rauschen im Netz
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Verschlüsselte Kommunikation hat noch einen Nebeneffekt: Es wird dadurch
|
||||
quasi Hintergrundrauschen erzeugt, das es Datenkraken
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Dieser Begriff für Institutionen mit
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"U
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
berwachungszielen (Firmen, Nachrichtendienste, ...) wurde im Umfeld des
|
||||
\begin_inset ERT
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Chaos Computer Club}{http://www.ccc.de}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
gepr
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"a
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
gt.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
erschwert, die gesuchten Informationen (z.B.
|
||||
von politischen AktivistInnen, MenschenrechtlerInnen usw.) herauszufischen.
|
||||
Wenn viele Menschen in ihrem Alltag Dinge wie z.B.
|
||||
Einkaufslisten verschlüsseln, dann sind diese Nachrichten nicht von anderen
|
||||
verschlüsselten zu unterscheiden.
|
||||
Die zu knackenden Datenberge wachsen und mit ihnen steigt der Aufwand überhaupt
|
||||
an relevante Informationen heranzukommen.
|
||||
Kritische Informationen werden so doppelt geschützt: Nicht nur durch die
|
||||
Verschlüsselung (welche, falls überhaupt knackbar, dann nur mit immensem
|
||||
Aufwand), sondern auch durch die Vielzahl an unwichtigen Nachrichten.
|
||||
Darum bieten manche Webseiten ihren Inhalt zwar öffentlich aber verschlüsselt
|
||||
an
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
Erkennbar daran, dass die Adresse nicht mit http://, sondern mit https://
|
||||
anf
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
"a
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ngt.
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
: Natürlich kann sie jeder Mensch lesen, der auf die Seite geht, aber was
|
||||
die einzelnen NutzerInnen genau auf der Seite machen, das bleibt im Verborgenen.
|
||||
Gleichzeitig werden Massen an verschlüsselten Daten erzeugt, die es potentielle
|
||||
n ÜberwacherInnen deutlich erschweren, relevante Informationen zu sammeln.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection*
|
||||
Identitätsklau
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Ein Phänomen, das zur Zeit zunehmend auftritt, ist eine Straftat, die
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Identitätsdiebstahl}{http://de.wikipedia.org/wiki/Identit
|
||||
\backslash
|
||||
%C3
|
||||
\backslash
|
||||
%A4tsdiebstahl}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
genannt wird: Das Vorgeben einer falschen Identität bei Kreditkartenbetrug
|
||||
und ähnlichen Straftaten.
|
||||
Die meisten Menschen vertrauen der Absenderangabe einer E-Mail, obwohl
|
||||
sich diese mit einfachsten Mitteln fälschen lässt.
|
||||
Deswegen ist die
|
||||
\emph on
|
||||
digitale Unterschrift
|
||||
\emph default
|
||||
, also das Signieren von Daten ein wichtiger Aspekt bei den Verschlüsselungstech
|
||||
niken.
|
||||
Durch Signaturen kannst du überprüfen, ob eine E-Mail tatsächlich von der
|
||||
Person kommt, die als Absender angegeben ist.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/zur_uebersicht.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
121
v1.4.3/documents/common/email/email.lyx
Normal file
|
@ -0,0 +1,121 @@
|
|||
#LyX 1.4.3 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.
|
||||
Es beginnt mit einer beispielhaften Erklärung der Funktionsweise von Verschlüss
|
||||
elung.
|
||||
Die sich anschließenden Anleitungen beschreiben detailliert die Einrichtung
|
||||
der erforderlichen Programme.
|
||||
Der letzte Teil befasst sich dann mit der konkreten Anwendung.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die Anleitungen sind so aufgebaut, dass du sie der Reihe nach durchgehen
|
||||
kannst und zum Schluss ein komplett eingerichtetes E-Mail-Programm inklusive
|
||||
der Möglichkeit zur Verschlüsselung vorfindest.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/email.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
125
v1.4.3/documents/common/email_anwendung/email_anwendung.lyx
Normal file
|
@ -0,0 +1,125 @@
|
|||
#LyX 1.4.3 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/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.3 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 welches 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{progress/email_anwendung.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
239
v1.4.3/documents/common/email_programme/email_programme.lyx
Normal file
|
@ -0,0 +1,239 @@
|
|||
#LyX 1.4.3 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.
|
||||
Falls du die Möglichkeit hast, lade dir die aktuelle Version von der entspreche
|
||||
nden Projektseite herunter.
|
||||
\newline
|
||||
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/}
|
||||
\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 anschließend 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.erweiterungen.de/detail/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/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.3 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, sofern
|
||||
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 Kästchen (rot markiert) 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{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 |
247
v1.4.3/documents/common/email_signieren/email_signieren.lyx
Normal file
|
@ -0,0 +1,247 @@
|
|||
#LyX 1.4.3 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 Optionen
|
||||
\emph on
|
||||
Nachricht unterschreiben
|
||||
\emph default
|
||||
und
|
||||
\emph on
|
||||
PGP/MIME verwenden
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Was ist PGP/MIME?}{../pgp_mime/pgp_mime.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\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{progress/email_anwendung.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,258 @@
|
|||
#LyX 1.4.3 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 kennen gelernt}{../schluessel_import/schluessel_import.ht
|
||||
ml}
|
||||
\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
|
||||
und
|
||||
\emph on
|
||||
PGP/MIME verwenden
|
||||
\begin_inset Foot
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Was ist PGP/MIME?}{../pgp_mime/pgp_mime.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\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{progress/email_anwendung.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
212
v1.4.3/documents/common/hilfe/hilfe.lyx
Normal file
|
@ -0,0 +1,212 @@
|
|||
#LyX 1.4.3 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 auch ü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 wird 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 Standard
|
||||
Wo finde ich ein Cover für die CD?
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Auf der CD befindet sich das Verzeichnis
|
||||
\emph on
|
||||
cover
|
||||
\emph default
|
||||
- dort findest du verschiedene Varianten.
|
||||
\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
|
190
v1.4.3/documents/common/index/index.lyx
Normal file
|
@ -0,0 +1,190 @@
|
|||
#LyX 1.4.3 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_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 bei der CryptoCD
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Auswahl des Betriebssystems
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Diese CD hilft dir dabei, das Internet mit einem Maximum an Privatsphäre
|
||||
zu nutzen.
|
||||
Der Einstieg in das Thema und die folgenden Anleitungen sind bewusst einstiegsf
|
||||
reundlich gehalten und auf die jeweiligen Betriebssysteme abgestimmt.
|
||||
Bevor du also loslegst, wähle dein Betriebssystem durch einen Klick auf
|
||||
einen der Computer aus.
|
||||
Viel Spaß!
|
||||
\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
|
246
v1.4.3/documents/common/index2/index2.lyx
Normal file
|
@ -0,0 +1,246 @@
|
|||
#LyX 1.4.2 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
|
||||
Nutze dein Recht auf Privatsphäre!
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Themenübersicht
|
||||
\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 Privatsphäre im
|
||||
Internet wichtig ist.</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">Mailen</a><br/>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
In diesem Abschnitt wird das Verschlüsseln von E-Mails erklärt.</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">Chatten</a><br/>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
Auch verschlüsselt Chatten ist nicht schwer.</td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
</tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<tr>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../surfen/surfen.html"><img src="../../surfen.png" alt="Surfen"
|
||||
/></a></td>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<td><a href="../surfen/surfen.html">Surfen</a><br/>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
Surfen, ohne Spuren zu hinterlassen.</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
|
||||
|
||||
\end_body
|
||||
\end_document
|
336
v1.4.3/documents/common/links/links.lyx
Normal file
|
@ -0,0 +1,336 @@
|
|||
#LyX 1.4.3 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 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
|
||||
Weiterführende Lektüre
|
||||
\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 Subsection
|
||||
Arbeitskreis Vorratsdatenspeicherung
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die Selbstbeschreibung fasst es am Besten zusammen:
|
||||
\begin_inset Quotes sld
|
||||
\end_inset
|
||||
|
||||
Der
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Arbeitskreis Vorratsdatenspeicherung}{http://www.vorratsdatensp
|
||||
eicherung.de/index.php?lang=de}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
(AK Vorrat) ist ein bundesweiter Zusammenschluss von Bürgerrechtlern, Datenschü
|
||||
tzern und Internet-Nutzern, der die Arbeit gegen die geplante Vollprotokollierun
|
||||
g der Telekommunikation koordiniert.
|
||||
\begin_inset Quotes srd
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Ein Projekt des AK Vorrat ist die
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{CD für Datenreisende}{http://wiki.vorratsdatenspeicherung.de/CD_
|
||||
f
|
||||
\backslash
|
||||
%C3
|
||||
\backslash
|
||||
%BCr_Datenreisende}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
- eine Zusammenstellung zum Thema, die verschiedene Audiobeträge und Software
|
||||
zum Schutz deiner Privatsphäre enthält.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Chaosradio
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Beim
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Chaosradio}{http://chaosradio.ccc.de/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
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 gesendet 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_layout Itemize
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Chaosradio 111}{http://chaosradio.de/cr111.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
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{Chaosradio 88}{http://chaosradio.de/cr88.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
beschäftigt sich mit der Frage, warum es in der Gesellschaft kaum Widerstand
|
||||
gegen Überwachungstendenzen gibt und wie der aktuelle Stand der Technik
|
||||
und der Gesetzgebung ist.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Chaosradio 72}{http://chaosradio.de/cr72.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
ist eine Sendung über die Nebeneffekte der Punktesammelbonuskarten wie
|
||||
Payback.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
GnuPG
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Eine umfangreiche deutschsprachige Hilfe zu GnuPG findet sich auf der
|
||||
\emph on
|
||||
|
||||
\emph default
|
||||
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Raven Homepage}{http://hp.kairaven.de/}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
Dazu noch jede Menge Anleitungen für sichere Onlinekommunikation.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Gesetze und Verordnungen
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Die
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\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
|
||||
|
||||
\begin_layout Subsection
|
||||
Datenschutz für unterwegs
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Mit dem
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{PrivacyDongle}{https://www.foebud.org/datenschutz-buergerrechte/
|
||||
vorratsdatenspeicherung/privacydongle}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
kannst du auch unterwegs im Internetcafé anonym surfen.
|
||||
Dabei handelt es sich um einen USB-Stick auf dem der Browser Firefox und
|
||||
Tor bereits installiert sind.
|
||||
Einfach einstecken und anonym los surfen.
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
|
@ -0,0 +1,290 @@
|
|||
#LyX 1.4.3 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 meist benutzten E-Mail-Provide
|
||||
r.
|
||||
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/wiki/Server-Einstel
|
||||
lungen_bekannter_Provider}
|
||||
\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
|
||||
\end_layout
|
||||
|
||||
\begin_layout Description
|
||||
Web-Interface: www.web.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*
|
||||
Google Mail (Gmail)
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Google Mail ist ein kostenloser E-Mail-Dienst der sich vor allem durch seine
|
||||
hohe Speicherkapazität von mehr als 2 GB auszeichnet.
|
||||
Vom Standpunkt des Datenschutzes aus betrachtet, raten wir allerdings von
|
||||
der Benutzung ab.
|
||||
Denn Google Mail durchsucht sämtliche E-Mails deines Postfachs um auf deren
|
||||
Inhalt bezogene Werbung einblenden zu können.
|
||||
Weiterhin schließt Google die Nutzung der Daten zu Marketingzwecken nicht
|
||||
aus.
|
||||
Nachlesen kannst du diese Dinge in der
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Google Mail-Datenschutzerklärung}{http://mail.google.com/mail/he
|
||||
lp/intl/de/privacy.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
, die mit der Eröffnung eines Kontos akzeptiert wird.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Besonders problematisch daran ist, dass auch E-Mails deiner Kommunikationspartne
|
||||
rInnen durchsucht und ausgewertet werden - und das obwohl sie die Google
|
||||
Mail-Datenschutzerklärung nicht akzeptiert haben.
|
||||
\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/mailserviceanbieter.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
BIN
v1.4.3/documents/common/pgp_mime/bilder/pgp_inline.png
Normal file
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 57 KiB |
198
v1.4.3/documents/common/pgp_mime/pgp_mime.lyx
Normal file
|
@ -0,0 +1,198 @@
|
|||
#LyX 1.4.3 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
|
||||
Was ist PGP/MIME?
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Es gibt zwei Möglichkeiten wie E-Mail-Verschlüsselung technisch umgesetzt
|
||||
werden kann: PGP/inline und PGP/MIME.
|
||||
Nachfolgend sollen die Unterschiede zwischen beiden Varianten verdeutlicht
|
||||
werden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
PGP/inline
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Bei Verwendung von PGP/inline werden die Verschlüsselungsdaten im Textkörper
|
||||
der E-Mail gespeichert.
|
||||
Dies kann oft zu Unklarheiten führen, wie folgende Abbildung einer signierten
|
||||
E-Mail zeigt:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/pgp_inline.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Darstellung mit PGP/inline
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Außerdem hat dieses Verfahren einige Einschränkungen, die durch PGP/MIME
|
||||
aufgehoben werden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
PGP/MIME
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Hierbei handelt es sich um eine Weiterentwicklung des PGP/inline Verfahrens
|
||||
mit vielen Vorteilen:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Die Signatur ist vom E-Mail-Text getrennt und wird als Anhang mitgeschickt.
|
||||
Dies ermöglicht ein leichteres Lesen.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Anhänge werden mit verschlüsselt und signiert.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Umlaute und andere Sonderzeichen können ohne Probleme benutzt werden.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Allerdings solltest du beachten, dass ältere Versionen von Outlook/Outlook
|
||||
Express Probleme bei der Darstellung von PGP/MIME signierten E-Mails haben.
|
||||
In diesem Fall ist es ratsam, PGP/MIME zu
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{deaktivieren}{../enigmail_einrichtung/enigmail_einrichtung.html#p
|
||||
gp_mime}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/pgp_mime.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 5.6 KiB |
After Width: | Height: | Size: 4 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 7.3 KiB |
After Width: | Height: | Size: 4.5 KiB |
|
@ -0,0 +1,340 @@
|
|||
#LyX 1.4.3 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
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Beim ersten Start von Gaim/Pidgin öffnen sich automatisch das Konten-Fenster.
|
||||
Um neues Konto anzulegen, klicke auf die Schaltfläche
|
||||
\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
|
||||
|
||||
Hinzufügen
|
||||
\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/gaim_02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Ein neues Konto anlegen
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Unter
|
||||
\emph on
|
||||
Protokoll
|
||||
\emph default
|
||||
kannst du den von dir genutzten Dienst auswählen - in unserem Beispiel ist
|
||||
es AIM/ICQ.
|
||||
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
|
||||
Lokaler Alias
|
||||
\emph default
|
||||
ein beliebiger Nickname.
|
||||
Damit sich Gaim/Pidgin dein Passwort merkt, kannst du bei der Option
|
||||
\emph on
|
||||
Passwort speichern
|
||||
\emph default
|
||||
ein Häkchen setzen:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/unbearbeitet/gaim_03.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Hier werden alle notwendigen Daten eingetragen
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\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.
|
||||
Durch das Setzen des Häkchens unter
|
||||
\emph on
|
||||
Aktiv
|
||||
\emph default
|
||||
verbindet sich Gaim/Pidgin bei jedem Start automatisch mit dem neu eingerichtete
|
||||
n Konto:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/unbearbeitet/gaim_04.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Konten
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Das Fenster kann nun geschlossen werden, so dass nur noch die
|
||||
\emph on
|
||||
Buddy-Liste
|
||||
\emph default
|
||||
geöffnet ist.
|
||||
Über das Menü am unteren Rand des Fensters kannst du nun die Verbindung
|
||||
zum ICQ-Netzwerk herstellen:
|
||||
\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
|
||||
Die Buddy-Liste
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Weiter geht es mit der Installation von Gaim-/Pidgin-Encryption.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/chat_programme.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 6.7 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 9.6 KiB |
|
@ -0,0 +1,273 @@
|
|||
#LyX 1.4.3 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
|
||||
Pidgin-Encryption einrichten
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
Verschlüsselt Chatten
|
||||
\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 Pidgin-Encryption - 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 Pidgin, öffne die Buddy-Liste und wähle
|
||||
aus dem Menü 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
|
||||
|
||||
Werkzeuge ->
|
||||
\emph on
|
||||
|
||||
\emph default
|
||||
Plugins
|
||||
\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/gaim_plugin_einstellungen01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Plugins auswählen
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Es öffnet sich ein Fenster mit allen verfügbaren Plugins.
|
||||
Dort findest du auch den Eintrag
|
||||
\emph on
|
||||
Gaim-Encryption
|
||||
\emph default
|
||||
bzw.
|
||||
|
||||
\emph on
|
||||
Pidgin-Encryption
|
||||
\emph default
|
||||
.
|
||||
Durch Setzen des Häkchens davor 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 bilder/gaim_plugin_uebersicht01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Aktivierung des Plugins
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Damit ist die Einrichtung auch schon abgeschlossen.
|
||||
Im letzten Schritt erfährst du, wie du verschlüsselte Nachrichten verschicken
|
||||
und empfangen kannst.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/chat_programme.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: 88 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,539 @@
|
|||
#LyX 1.4.3 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 im
|
||||
Abschnitt
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{Wie funktioniert Verschlüsselung eigentlich?}{../verschluesselun
|
||||
g_funktion/verschluesselung_funktion.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
|
||||
Beim ersten Start erscheint der OpenPGP-Assistent.
|
||||
Da dieser ein paar wichtige Einstellungen nicht anbietet, muss er an dieser
|
||||
Stelle abgebrochen werden.
|
||||
Danach öffnet sich automatisch die Schlüsselverwaltung.
|
||||
Hier kannst du nun dein neues Schlüsselpaar erstellen.
|
||||
Klicke dazu 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 Widerrufszer
|
||||
tifikat 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/schluesselbund.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 88 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.4.3/documents/common/schluessel_export/schluessel_export.lyx
Normal file
|
@ -0,0 +1,538 @@
|
|||
#LyX 1.4.3 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
|
||||
Den ö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.
|
||||
auf 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/schluesselbund.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
After Width: | Height: | Size: 89 KiB |
After Width: | Height: | Size: 130 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 76 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 102 KiB |
After Width: | Height: | Size: 101 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 154 KiB |
595
v1.4.3/documents/common/schluessel_import/schluessel_import.lyx
Normal file
|
@ -0,0 +1,595 @@
|
|||
#LyX 1.4.3 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
|
||||
Schlüssel importieren
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset LatexCommand \tableofcontents{}
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Wie du bereits weißt, benötigtst du den öffentlichen Schlüssel deines Kommunikat
|
||||
ionspartners/deiner Kommunikationspartnerin, um E-Mails an diese Person
|
||||
zu verschlüsseln.
|
||||
Diesen öffentlichen Schlüssel kannst du auf verschiedenen Wegen erhalten:
|
||||
per E-Mail, auf Diskette oder per USB-Stick - wie auch immer.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Schlüssel aus E-Mails importieren 1
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Am einfachsten ist es, wenn du dein Kommunikationspartner/deine Kommunikationspa
|
||||
rtnerin bittest den Schlüssel per E-Mail zu schicken.
|
||||
Der Schlüssel kommt dann meist als Anhang der E-Mail.
|
||||
Wie in der folgenden Abbildung zu sehen, brauchst du lediglich mit der
|
||||
rechten Maustaste auf den entsprechenden Anhang klicken und aus dem Menü
|
||||
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
|
||||
|
||||
OpenPGP-Schlüssel importieren
|
||||
\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
|
||||
|
||||
auswählen:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/schluessel_import_per_mail01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Ein Schlüssel aus dem Anhang wird importiert
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Der Schlüssel wird nun automatisch zu deinem Schlüsselring hinzugefügt.
|
||||
Falls der Punkt
|
||||
\emph on
|
||||
OpenPGP-Schlüssel importieren
|
||||
\emph default
|
||||
nicht auswählbar ist, wurde in der angehängten Datei kein Schlüssel gefunden.
|
||||
Falls du dir dennoch sicher bist, dass es sich um eine gültige Schlüsseldatei
|
||||
handelt, kannst du ihn über den Punkt
|
||||
\emph on
|
||||
Entschlüsseln und Öffnen
|
||||
\emph default
|
||||
importieren.
|
||||
|
||||
\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_import_per_mail02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Der Import verlief erfolgreich
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Schlüssel aus E-Mails importieren 2
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
begin{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
<div id="pgp_mime"></div>
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
end{rawhtml}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Manchmal wirst du E-Mails bekommen, die den Schlüssel im Textkörper enthalten.
|
||||
Eine solche E-Mail wurde mit dem Verfahren
|
||||
\begin_inset ERT
|
||||
status collapsed
|
||||
|
||||
\begin_layout Standard
|
||||
|
||||
|
||||
\backslash
|
||||
htmladdnormallink{PGP/inline}{../pgp_mime/pgp_mime.html}
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
verschlüsselt und ist leicht an einem kryptischen Block zu erkennen:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/schluessel_import_mail_inline01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Ein Schlüssel innerhalb des Textkörpers
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Du kannst den Schlüssel importieren, indem du 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
|
||||
|
||||
Entschlüsseln
|
||||
\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
|
||||
|
||||
(1) klickst und die anschließende Frage (2) bestätigst:
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Float figure
|
||||
wide false
|
||||
sideways false
|
||||
status open
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Graphics
|
||||
filename bilder/schluessel_import_mail_inline02.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Der Schlüssel wird importiert
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
Schlüssel von Datenträgern importieren
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Hast du einen öffentlichen Schlüssel auf einem Datenträger, bspw.
|
||||
einem USB-Stick, erhalten, führe die folgenden Schritte aus, um ihn zu
|
||||
importieren.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Speichere die Datei mit dem Schlüssel in einem Verzeichnis auf deiner Festplatte.
|
||||
Um den Schlüssel nun zu importieren, starte wie gewohnt die Schlüsselverwaltung
|
||||
:
|
||||
\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
|
||||
Wähle nun aus der Menüleiste 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 -> Importieren...
|
||||
\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_import_per_datei01.png
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Caption
|
||||
Schlüssel importieren mit der Schlüsselverwaltung
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Es öffnet sich ein neues Fenster mit der Verzeichnis-Ansicht deiner Festplatte.
|
||||
Klicke dich bis zu dem Verzeichnis durch, in dem der zu importierende Schlüssel
|
||||
liegt, markiere diesen und klicke auf
|
||||
\emph on
|
||||
Öffnen
|
||||
\emph default
|
||||
.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/schluesselbund.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
128
v1.4.3/documents/common/schluesselbund/schluesselbund.lyx
Normal file
|
@ -0,0 +1,128 @@
|
|||
#LyX 1.4.3 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
|
||||
Das Schlüsselbund verwalten
|
||||
\end_layout
|
||||
|
||||
\begin_layout Author
|
||||
E-Mails verschlüsseln
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
Nach der Installation der Programme widmen sich die nun folgenden Seiten
|
||||
der Verwaltung deines Schlüsselbundes.
|
||||
Zu Beginn ist es noch leer.
|
||||
Deine erste Aufgabe ist es, einen eigenen öffentlichen und privaten Schlüssel
|
||||
zu erzeugen.
|
||||
Ist dies erledigt, erfährst du, wie du öffentliche Schlüssel von anderen
|
||||
Menschen hinzu fügen und deinen öffentlichen Schlüssel weiter geben kannst.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Standard
|
||||
\begin_inset Include \input{progress/schluesselbund.inc}
|
||||
preview false
|
||||
|
||||
\end_inset
|
||||
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|