• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/14

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

14 Cards in this Set

  • Front
  • Back

Making gpg pair key

gpg --full-generate-key


gpg --gen-key

Show private keys

gpg -K

Show public keys


Show private keys

gpg -k


gpg -K

encrypting file

gpg -e -o [encryptedf file name].gpg -r [recipient's email] [the file that we want to encrypt]

edit keys

gpg --edit-key [recipient's email]

adding public key via serverkey

gpg --auto-key-locate [wkd server] --locate-keys [recipient's email]


gpg --recv-keys --keyserver [key server] [key id]

decrypting a file

gpg -d -o [output file's name ] [ecrypted file]

verifying file

gpg --verify [signiture file] [signed file]

verify a gpg signature matches a specefic public key file

gpg --no-default-keyring --keyring [/path/to/pubkey.gpg] --verify [/path/to/file.txt.gpg]

Uploading the key to Ubuntu keyserver
gpg --send-keys --keyserver [keyserver] [key-id]

set ASCII-armored signature

gpg --clearsign [sign file]

How upload pub key in keyserver

gpg --send-keys --keyserver [keyserver] [key id]

show public key

gpg --export --armor {finger print}

Symmetric encryption and


decryption

gpg -c {file}


gpg -d {file.gpg}