X-Git-Url: http://www.git.cypherpunks.ru/?p=gogost.git;a=blobdiff_plain;f=integrity.texi;fp=integrity.texi;h=7e283ea7ef2874e569f41df2e76af9cdcf0fda87;hp=0000000000000000000000000000000000000000;hb=bdd673f985d78301d8d03b94ac603722348ec4f2;hpb=470b2a1f9d3f61414da28bcaaf50590657ff394b diff --git a/integrity.texi b/integrity.texi new file mode 100644 index 0000000..7e283ea --- /dev/null +++ b/integrity.texi @@ -0,0 +1,34 @@ +You @strong{have to} verify downloaded tarballs authenticity to be sure +that you retrieved trusted and untampered software. There are two options: + +@table @asis + +@item @url{https://www.openpgp.org/, OpenPGP} @file{.asc} signature + Use @url{https://www.gnupg.org/, GNU Privacy Guard} free software + implementation. + For the very first time it is necessary to get signing public key and + import it. It is provided @url{PUBKEY-PGP.asc, here}, but you should + check alternate resources. + +@verbatim +pub rsa2048/0x82343436696FC85A 2016-09-13 + CEBD 1282 2C46 9C02 A81A 0467 8234 3436 696F C85A +uid GoGOST releases +@end verbatim + +@example +$ gpg --auto-key-locate dane --locate-keys gogost at cypherpunks dot ru +$ gpg --auto-key-locate wkd --locate-keys gogost at cypherpunks dot ru +@end example + +@item @url{https://www.openssh.com/, OpenSSH} @file{.sig} signature + @url{PUBKEY-SSH.pub, Public key} and its OpenPGP + @url{PUBKEY-SSH.pub.asc, signature} made with the key above. + Its fingerprint: @code{SHA256:u8X9rPDOhxpyzGs/IugbxXbDeOu/0AttKY+LGAvHBH0}. + +@example +$ ssh-keygen -Y verify -f PUBKEY-SSH.pub -I gogost@@cypherpunks.ru -n file \ + -s gogost-@value{VERSION}.tar.zst.sig < gogost-@value{VERSION}.tar.zst +@end example + +@end table