Project

General

Profile

ReleaseKey » History » Version 22

Kurtis Hanna, 11/30/2020 10:16 PM
added example command to get GNUtoo's up to date public GPG key

1 16 dl lud
h1. Release keys
2 1 Paul Kocialkowski
3 14 Wolfgang Wiedmeyer
h2. Which key for which Replicant version?
4
5 19 Denis 'GNUtoo' Carikli
h3. From Replicant 6.0 0004 RC1
6
7
8
Key ID: FB31DBA3AB8DB76A4157329F7651568F80374459
9
10
These images are signed with [[People#Denis-GNUtoo-Carikli|Denis 'GNUtoo' Carikli]]'s key and has the following fingerprint:
11
<pre>
12
FB31 DBA3 AB8D B76A 4157  329F 7651 568F 8037 4459
13
</pre>
14
15 18 Denis 'GNUtoo' Carikli
h3. Up to Replicant 6.0 0003
16 14 Wolfgang Wiedmeyer
17
Key ID: 5816A24C10757FC4
18
19 17 Denis 'GNUtoo' Carikli
These images are signed with [[People#Wolfgang-Wiedmeyer|Wolfgang Wiedmeyer]]'s key and has the following fingerprint:
20 1 Paul Kocialkowski
<pre>
21 14 Wolfgang Wiedmeyer
0F30 D1A0 2F73 F70A 6FEE  048E 5816 A24C 1075 7FC4
22
</pre>
23
24
h3. Replicant 4.2 and below
25
26
Key ID: 16D1FEEE4A80EB23
27
28
These images are signed with the Replicant release key which expires 2024-01-17 and has the following fingerprint:
29
<pre>
30 1 Paul Kocialkowski
E776 092B 052A DC91 FDD1 FD80 16D1 FEEE 4A80 EB23
31
</pre>
32
33 13 Wolfgang Wiedmeyer
h2. Retrieving the Replicant release key
34 1 Paul Kocialkowski
35 14 Wolfgang Wiedmeyer
In the following, @KEY_ID@ needs to be replaced with the right key ID from above.
36
37 5 Paul Kocialkowski
h3. From a key server (recommended)
38 12 Wolfgang Wiedmeyer
39 9 Loic Dachary
You can retrieve our signing key from a public key server and import it to your GPG keyring using:
40 1 Paul Kocialkowski
41 10 Wolfgang Wiedmeyer
<pre>
42 14 Wolfgang Wiedmeyer
gpg --recv-key KEY_ID
43 13 Wolfgang Wiedmeyer
</pre>
44 1 Paul Kocialkowski
45 21 Kurtis Hanna
It sometimes is the case that certain keyservers have updated GPG keys while other keyservers have expired GPG keys or don't have them at all. In this situation, an alternate keyserver can be specified by adding a keyserver flag to the command:
46 20 Kurtis Hanna
47
<pre>
48
gpg --keyserver KEYSERVER_ID --recv-key KEY_ID
49
</pre>
50
51 22 Kurtis Hanna
For example, to get [[People#Denis-GNUtoo-Carikli|Denis 'GNUtoo' Carikli]]'s up to date public GPG key, you can use a command such as this:
52
53
<pre>
54
gpg --keyserver keys.gnupg.net --recv-key FB31DBA3AB8DB76A4157329F7651568F80374459
55
</pre>
56
57 1 Paul Kocialkowski
Errors may occur if GPG is not properly configured. Following a guide like "this":https://riseup.net/en/security/message-security/openpgp/best-practices should ensure that the key is retrieved securely.
58
59 8 Paul Kocialkowski
h3. From our releases
60 1 Paul Kocialkowski
61
A copy of our signing key is shipped with every Replicant release, distributed with [[ReplicantImages|Replicant images]].
62
Once downloaded, the key can be imported to your GPG keyring using:
63 6 Paul Kocialkowski
<pre>
64 14 Wolfgang Wiedmeyer
gpg  --armor --import path/to/KEY.asc
65 1 Paul Kocialkowski
</pre>
66
67
h2. Establishing a chain of trust
68
69 11 Wolfgang Wiedmeyer
In order to establish a chain of trust, you are encouraged to retrieve our release key physically when meeting a trusted [[People|Replicant developer]] and sign it with your own key.
70 1 Paul Kocialkowski
71 11 Wolfgang Wiedmeyer
You can see the signatures the release key is already signed with running:
72
73 14 Wolfgang Wiedmeyer
<pre>
74 11 Wolfgang Wiedmeyer
gpg --list-sigs KEY_ID
75
</pre>
76 1 Paul Kocialkowski
77 20 Kurtis Hanna
If a key you already trust is among these signatures, a chain of trust is established between your key and the release key. However, this chain of trust is not as strong as the direct one you establish when you personally verify and sign the release key.