Message ID | 70935696913de1e834ede287158a4ab03431b273.1722439238.git.lukas@wunner.de (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Keysigning map cleanups & graph links | expand |
On Wed, Jul 31, 2024 at 5:32 PM Lukas Wunner <lukas@wunner.de> wrote: > Several user entries contain outdated key ids or broken e-mail addresses > which make the map less useful than it could be: (...) > Linus Walleij's entry references key 746e7b29c50a0166, a 1024 bit DSA > key created in 2005. The kernel keyring contains a 4096 bit RSA key > instead which was created in 2011. Assume that the older key has been > abandoned and replace it with the newer one. That's correct, I think I "bumped" they old key but I don't know what the semantic effect of that really is, I guess it just creates a new key and signs it with the old key. Yours, Linus Walleij
Hi Lukas, On 31/07/2024 17:31, Lukas Wunner wrote: > Several user entries contain outdated key ids or broken e-mail addresses > which make the map less useful than it could be: (...) > Matthieu Baerts' entry similarly references key 3eacee6acfd74ede, a 2048 > bit RSA key created 2009, whereas the kernel keyring contains a 4096 bit > RSA key created 2015. Replace with the newer one. (...) > diff --git a/users/matttbe.yaml b/users/matttbe.yaml > index 5ccf4d9..3fb7385 100644 > --- a/users/matttbe.yaml > +++ b/users/matttbe.yaml > @@ -1,6 +1,6 @@ > name: 'Matthieu Baerts' > email: 'matttbe@kernel.org' > -key: 'CFD74EDE' > +key: 'F6B7824F4269A073' That's correct, thank you for the fix! Cheers, Matt
diff --git a/users/bwidawsk.yaml b/users/bwidawsk.yaml index d8e0a65..2633c8d 100644 --- a/users/bwidawsk.yaml +++ b/users/bwidawsk.yaml @@ -1,5 +1,5 @@ -email: ben.widawsky@intel.com -key: 8E9B20F4E7641153 +email: bwidawsk@kernel.org +key: BF674C8889123D29 locations: Portland OR 97209: description: '' diff --git a/users/hpa.yaml b/users/hpa.yaml index d741f52..ab223e6 100644 --- a/users/hpa.yaml +++ b/users/hpa.yaml @@ -1,5 +1,5 @@ email: hpa@zytor.com -key: 58F7ABFE +key: 2DB3C3321B6DDF86 locations: Santa Clara CA 95054: description: '' diff --git a/users/linusw.yaml b/users/linusw.yaml index c7092e6..be24493 100644 --- a/users/linusw.yaml +++ b/users/linusw.yaml @@ -1,5 +1,5 @@ email: linus.walleij@linaro.org -key: C50A0166 +key: 4110B337B0195D73 locations: Sweden: description: '' diff --git a/users/matttbe.yaml b/users/matttbe.yaml index 5ccf4d9..3fb7385 100644 --- a/users/matttbe.yaml +++ b/users/matttbe.yaml @@ -1,6 +1,6 @@ name: 'Matthieu Baerts' email: 'matttbe@kernel.org' -key: 'CFD74EDE' +key: 'F6B7824F4269A073' locations: 'Namur, Belgium': latlong: '50.46071,4.86621' diff --git a/users/mcgrof.yaml b/users/mcgrof.yaml index fe06fe7..533f6e8 100644 --- a/users/mcgrof.yaml +++ b/users/mcgrof.yaml @@ -1,5 +1,5 @@ email: mcgrof@do-not-panic.com -key: DA364385 +key: DC553250F8FE7407 locations: San Francisco, CA, 94108: description: '' diff --git a/users/mripard.yaml b/users/mripard.yaml index f8dd8ca..9e33b79 100644 --- a/users/mripard.yaml +++ b/users/mripard.yaml @@ -1,5 +1,5 @@ email: maxime.ripard@bootlin.com -key: EC8F1020 +key: 254BCFC56BF6CE8D locations: Toulouse, France: description: '' diff --git a/users/pabeni.yaml b/users/pabeni.yaml index a5290c6..76b78af 100644 --- a/users/pabeni.yaml +++ b/users/pabeni.yaml @@ -1,5 +1,5 @@ email: pabeni@redhat.com -key: 835023A8 +key: 2924798DCC8F13A4 locations: Montecarlo, Italy: description: ''
Several user entries contain outdated key ids or broken e-mail addresses which make the map less useful than it could be: Ben Widawsky's entry references subkey 8E9B20F4E7641153 instead of primary key BF674C8889123D29 and his intel.com e-mail address bounces. Fix it. H. Peter Anvin's entry references key 58F7ABFE which cannot be found on the usual keyservers. It was introduced in 2016 by commit c019616fb7e4 ("Port data from the existing map hosted on google"). Assume the key id is outdated and replace it with the latest one from the kernel keyring. Linus Walleij's entry references key 746e7b29c50a0166, a 1024 bit DSA key created in 2005. The kernel keyring contains a 4096 bit RSA key instead which was created in 2011. Assume that the older key has been abandoned and replace it with the newer one. Matthieu Baerts' entry similarly references key 3eacee6acfd74ede, a 2048 bit RSA key created 2009, whereas the kernel keyring contains a 4096 bit RSA key created 2015. Replace with the newer one. Luis Chamberlain's entry references key DA364385 which cannot be found on the usual keyservers. Assume the key id is outdated and replace it with the latest one from the kernel keyring. Maxime Ripard's entry references key 1c7e626cec8f1020, a 4096 bit RSA key created 2013, whereas the kernel keyring contains an eddsa263 key created 2018. Replace with the newer one. Paolo Abeni's entry references the highest-order bits instead of the lowest-order bits of his key 835023a82efbc1b74b5f62db2924798dcc8f13a4. Fix it. Signed-off-by: Lukas Wunner <lukas@wunner.de> Cc: Ben Widawsky <bwidawsk@kernel.org> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: Matthieu Baerts <matttbe@kernel.org> Cc: Luis Chamberlain <mcgrof@kernel.org> Cc: Maxime Ripard <mripard@kernel.org> Cc: Paolo Abeni <pabeni@redhat.com> --- users/bwidawsk.yaml | 4 ++-- users/hpa.yaml | 2 +- users/linusw.yaml | 2 +- users/matttbe.yaml | 2 +- users/mcgrof.yaml | 2 +- users/mripard.yaml | 2 +- users/pabeni.yaml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-)