]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - doc/md/dev/GnuPG-signature.md
Merge pull request #1552 from ArthurHoaro/feature/better-initializer
[github/shaarli/Shaarli.git] / doc / md / dev / GnuPG-signature.md
1 ## Introduction
2 ### PGP and GPG
3 [Gnu Privacy Guard](https://gnupg.org/) (GnuPG) is an Open Source implementation of the [Pretty Good Privacy](https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP) (OpenPGP) specification. Its main purposes are digital authentication, signature and encryption. It is often used by the [FLOSS](https://en.wikipedia.org/wiki/Free_and_open-source_software) community to verify:
4
5 - Linux package signatures: Debian [SecureApt](https://wiki.debian.org/SecureApt), ArchLinux [Master Keys](https://www.archlinux.org/master-keys/)
6 - [Version control](https://en.wikipedia.org/wiki/Revision_control) releases & maintainer identity
7
8 > You MUST understand that presence of data in the keyserver (pools) in no way connotes trust. Anyone can generate a key, with any name or email address, and upload it. All security and trust comes from evaluating security at the “object level”, via PGP [Web of trust](https://en.wikipedia.org/wiki/Web_of_trust) signatures. This keyserver makes it possible to retrieve keys, looking them up via various indices, but the collection of keys in this public pool is KNOWN to contain malicious and fraudulent keys. It is the common expectation of server operators that users understand this and use software which, like all known common OpenPGP implementations, evaluates trust accordingly. This expectation is so common that it is not normally explicitly stated.
9
10 -- Phil Pennock (author of the [SKS](https://bitbucket.org/skskeyserver/sks-keyserver/wiki/Home) key server - http://sks.spodhuis.org/)
11
12 Trust can be gained by having your key signed by other people (and signing their key back, too :) ), for instance during [key signing parties](https://en.wikipedia.org/wiki/Key_signing_party): [Keysigning party HOWTO](http://www.cryptnet.net/fdp/crypto/keysigning_party/en/keysigning_party.html),
13
14
15 ## Generate a GPG key
16 - [Generating a GPG key for Git tagging](http://stackoverflow.com/a/16725717) (StackOverflow)
17 - [Generating a GPG key](https://help.github.com/articles/generating-a-gpg-key/) (GitHub)
18
19 ### gpg - provide identity information
20 ```bash
21 $ gpg --gen-key
22
23 gpg (GnuPG) 2.1.6; Copyright (C) 2015 Free Software Foundation, Inc.
24 This is free software: you are free to change and redistribute it.
25 There is NO WARRANTY, to the extent permitted by law.
26
27 Note: Use "gpg2 --full-gen-key" for a full featured key generation dialog.
28
29 GnuPG needs to construct a user ID to identify your key.
30
31 Real name: Marvin the Paranoid Android
32 Email address: marvin@h2g2.net
33 You selected this USER-ID:
34 "Marvin the Paranoid Android <marvin@h2g2.net>"
35
36 Change (N)ame, (E)mail, or (O)kay/(Q)uit? o
37 We need to generate a lot of random bytes. It is a good idea to perform
38 some other action (type on the keyboard, move the mouse, utilize the
39 disks) during the prime generation; this gives the random number
40 generator a better chance to gain enough entropy.
41 ```
42
43 ### gpg - entropy interlude
44 At this point, you will:
45 - be prompted for a secure password to protect your key (the input method will depend on your Desktop Environment and configuration)
46 - be asked to use your machine's input devices (mouse, keyboard, etc.) to generate random entropy; this step _may take some time_
47
48 ### gpg - key creation confirmation
49 ```bash
50 gpg: key A9D53A3E marked as ultimately trusted
51 public and secret key created and signed.
52
53 gpg: checking the trustdb
54 gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
55 gpg: depth: 0 valid: 2 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 2u
56 pub rsa2048/A9D53A3E 2015-07-31
57 Key fingerprint = AF2A 5381 E54B 2FD2 14C4 A9A3 0E35 ACA4 A9D5 3A3E
58 uid [ultimate] Marvin the Paranoid Android <marvin@h2g2.net>
59 sub rsa2048/8C0EACF1 2015-07-31
60 ```
61
62 ### gpg - submit your public key to a PGP server (Optional)
63 ``` bash
64 $ gpg --keyserver pgp.mit.edu --send-keys A9D53A3E
65 gpg: sending key A9D53A3E to hkp server pgp.mit.edu
66 ```
67
68 ## Create and push a GPG-signed tag
69
70 See [Release Shaarli](Release Shaarli).