mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 09:02:08 +02:00
gpg: add German translation
This commit is contained in:
parent
c2bf1269d4
commit
34a36465bf
1 changed files with 32 additions and 0 deletions
32
pages.de/common/gpg.md
Normal file
32
pages.de/common/gpg.md
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# gpg
|
||||||
|
|
||||||
|
> GNU Privacy Guard.
|
||||||
|
> Mehr Informationen: <https://gnupg.org>.
|
||||||
|
|
||||||
|
- Signiere doc.txt ohne Verschlüsselung (Ausabe nach doc.txt.asc):
|
||||||
|
|
||||||
|
`gpg --clearsign {{doc.txt}}`
|
||||||
|
|
||||||
|
- Verschlüssle doc.txt für alice@beispiel.de (Ausgabe nach doc.txt.gpg):
|
||||||
|
|
||||||
|
`gpg --encrypt --recipient {{alice@beispiel.de}} {{doc.txt}}`
|
||||||
|
|
||||||
|
- Verschlüssle doc.txt nur mit Passwort (Ausgabe nach doc.txt.gpg):
|
||||||
|
|
||||||
|
`gpg --symmetric {{doc.txt}}`
|
||||||
|
|
||||||
|
- Entschlüssle doc.txt.gpg (Ausgabe nach `stdout`):
|
||||||
|
|
||||||
|
`gpg --decrypt {{doc.txt.gpg}}`
|
||||||
|
|
||||||
|
- Importiere einen Öffentlichen Schlüssel:
|
||||||
|
|
||||||
|
`gpg --import {{public.gpg}}`
|
||||||
|
|
||||||
|
- Exportiere Öffentlichen Schlüssel von alice@beispiel.de (Ausgabe nach `stdout`):
|
||||||
|
|
||||||
|
`gpg --export --armor {{alice@beispiel.de}}`
|
||||||
|
|
||||||
|
- Exportiere Privaten Schlüssel von alice@beispiel.de (Ausgabe nach `stdout`):
|
||||||
|
|
||||||
|
`gpg --export-secret-keys --armor {{alice@beispiel.de}}`
|
Loading…
Add table
Reference in a new issue