-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

gpg


> GNU Privacy Guard.

> See `gpg2` for GNU Privacy Guard 2.

More information.


Create a GPG public and private key interactively:

gpg --full-generate-key

Sign `doc.txt` without encryption (writes output to `doc.txt.asc`):

gpg --clearsign {doc.txt}

Encrypt `doc.txt` for alice@example.com (output to `doc.txt.gpg`):

gpg --encrypt --recipient {alice@example.com} {doc.txt}

Encrypt `doc.txt` with only a passphrase (output to `doc.txt.gpg`):

gpg --symmetric {doc.txt}

Decrypt `doc.txt.gpg` (output to stdout):

gpg --decrypt {doc.txt.gpg}

Import a public key:

gpg --import {public.gpg}

Export public key for alice@example.com (output to stdout):

gpg --export --armor {alice@example.com}

Export private key for alice@example.com (output to stdout):

gpg --export-secret-keys --armor {alice@example.com}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 06:15:17 2024