llambiel/letsecureme

Incorrect checksum for signing key

Closed this issue · 1 comments

I don't think the way you're doing your checksum is correct. It looks like it's getting the same result as an empty string.

user@host:~$ wget --quiet http://nginx.org/keys/nginx_signing.key -O nginx_signing.key | sha256sum
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855  -

user@host:~$ echo -ne "" | sha256sum
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855  -

Here is the result I get when I changed the form of the command.

user@host:~$ wget --quiet http://nginx.org/keys/nginx_signing.key -O nginx_signing.key && sha256sum nginx_signing.key
dcc2ed613d67b277a7e7c87b12907485652286e199c1061fb4b3af91f201be39  nginx_signing.key

Thanks for pointing this out !

Fixed by commit d4666c3