GnuPG (Linux): Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 33: | Zeile 33: | ||
<pre> | <pre> | ||
gpg --fingerprint | gpg --fingerprint <Name oder Key_Id> | ||
</pre> | |||
== Dateioperationen == | |||
=== verschlüsseln === | |||
<pre> | |||
gpg --encrypt -a --recipient <Name oder Key_Id> test.txt | |||
</pre> | |||
=== entschlüsseln === | |||
<pre> | |||
gpg --decrypt --output entschluesselt.txt test.txt.asc | |||
</pre> | </pre> | ||
Version vom 27. Dezember 2016, 11:08 Uhr
Noch in Bearbeitung
Installation
sudo apt-get install gnupg2 gnupg-doc
Schlüssel erzeugen
gpg --gen-key
Schlüssel auflisten
geheim
gpg --list-secret-keys gpg -K
öffentlich
gpg --list-keys gpg -k
Fingerabdruck anzeigen
gpg --fingerprint <Name oder Key_Id>
Dateioperationen
verschlüsseln
gpg --encrypt -a --recipient <Name oder Key_Id> test.txt
entschlüsseln
gpg --decrypt --output entschluesselt.txt test.txt.asc
Siehe auch
Links
http://gnupg-doc.kirner.or.at/
https://wiki.ubuntuusers.de/GnuPG/
https://www.gnupg.org/gph/de/manual/
Zurück zu Ubuntu