diff options
-rw-r--r-- | docs/releases.md | 28 | ||||
-rw-r--r-- | mkdocs.yml | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/docs/releases.md b/docs/releases.md new file mode 100644 index 0000000..a7466fc --- /dev/null +++ b/docs/releases.md @@ -0,0 +1,28 @@ +gocryptfs Releases +================== + +Releases done by adding an signed git tag to a commit. All releases +are available via github at https://github.com/rfjakob/gocryptfs/releases . + +All releases from v0.4 onward are signed using the *gocryptfs signing key*, + + Primary key fingerprint: FFF3 E014 44FE D7C3 16A3 545A 895F 5BC1 23A0 2740 + +The public key can be downloaded +[here](https://nuetzlich.net/gocryptfs-signing-key.pub). + +To verify the signed tags, you have to import the public key into your +gpg keyring: + + $ wget https://nuetzlich.net/gocryptfs-signing-key.pub + $ gpg --import gocryptfs-signing-key.pub + +Then, you can verify tags using `git tag -v`: + + $ git tag -v v0.7 + [...] + gocryptfs v0.7 + gpg: Signature made So 20 Dez 2015 20:29:19 CET using RSA key ID 23A02740 + gpg: Good signature [...] + +Note that the `key ID` is simply the last eight digits of the key fingerprint, `23A0 2740`. @@ -5,3 +5,4 @@ pages: - Home: index.md - Quickstart: quickstart.md - Security: security.md +- Releases: releases.md |