1

I've recently got familiar with the concept of OpenPGP public-private keys, and how to use GnuPG tool to manage PGP keys. I have three questions:

1- Is it necessary for me to have a PGP (or an OpenPGP) key? I'm an Android programmer, and an ordinary Linux user.

2- If yes, then, do I need only one PGP key, or I will need several keys for different purposes?

3- Is this belief true: Every today's computer user needs having, and using PGP keys?

1 Answer 1

1
  1. "Is it necessary" depends on your individual needs. PGP lets you:
    • send/receive encrypted text
    • prove that the message came from you / verify where it came from

Are those things necessary for you? If so, then PGP provides a "pretty good" solution.

  1. One PGP key is fine. For different purposes, you can use:

    • Different UIDs for different email addresses
    • Different subkeys for different devices (if one device gets lost, you can revoke only one subkey instead of your entire identity) See this answer for more detail.
  2. Again, this answer depends on the individual's needs. A computer that's used only for media consumption and online shopping will be fine without; the built-in security (SSL/TLS) will cover credit card numbers, etc.

Signing Android apps is an entirely different story.

This has been answered elsewhere , but in short, create a new key (not keystore) for every app that you may one day sell/transfer. Otherwise, you may have to give someone else a key that is able to sign other apps of yours.

2
  • 1
    Does the android store really use regular pgp/gpg keys? stuff.mit.edu/afs/sipb/project/android/docs/tools/publishing/… says it uses some "Keytool utility"
    – Xen2050
    Commented Dec 19, 2017 at 5:50
  • @Xen2050 Whoops, I should've been more clear in the post; I didn't mean to imply that it uses PGP, I was only addressing the "I'm an Android programmer" part of the question. I believe android uses some type of X.509, but I'd love to learn more about the specifics. Thanks for catching that!
    – user116037
    Commented Dec 21, 2017 at 5:19

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .