From 200a40b332420f94992eb39a6d0ea1cf1490ffc4 Mon Sep 17 00:00:00 2001 From: coreyg Date: Fri, 21 Nov 2014 09:30:19 +0000 Subject: Adding tuscany's website to their svn repo for svnpubsub git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1640879 13f79535-47bb-0310-9956-ffa450edef68 --- .../documentation-2x/create-signing-key.html | 196 +++++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 site/trunk/site-publish/documentation-2x/create-signing-key.html (limited to 'site/trunk/site-publish/documentation-2x/create-signing-key.html') diff --git a/site/trunk/site-publish/documentation-2x/create-signing-key.html b/site/trunk/site-publish/documentation-2x/create-signing-key.html new file mode 100644 index 0000000000..bdbbb23108 --- /dev/null +++ b/site/trunk/site-publish/documentation-2x/create-signing-key.html @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + Create Signing Key : Apache Tuscany + + + + + + + + + + + +
+ HomeApache Tuscany Docs 2.x > Index > Making Releases > Create Signing Key + +
+ + + + + + +
+
+ + + + + + + + +
+  Apache Tuscany Docs 2.x > Index > Making Releases > Create Signing Key + + Tuscany Home | User List | Dev List | Issue Tracker   +
+ + + + + + +
+
Table of Contents
+
+ + +
+
+ +
+ + +
+
+

+
Unable to render {include} Couldn't find a page to include called: Menus
+ +

Create a code signing key

+ +

Install GNU GPG

+ +

Create a gpg config file eg c:\gpg\conf\gpg.conf with the following contents:

+
+
+utf8-strings
+keyserver x-hkp://pgp.surfnet.nl/
+default-cert-check-level 3
+keyserver-options auto-key-retrieve include-subkeys
+no-mangle-dos-filenames
+no-secmem-warning
+
+
+ +

Set the GNUPGHOME environment var to point to that: set GNUPGHOME=\gpg\conf

+ +

gpg --gen-key

+ +

accept all defaults, use your apache email and a comment like "Code Signing Key", eg:

+ +

Real name: Ant Elder
+Email address: antelder@apache.org
+Comment: Code Signing Key

+ +

Use long hard to guess passphrase with numbers and miss spellings etc

+ +

now should be able to show that key with: gpg --list-keys

+ +

C:\>gpg --list-keys
+/gpgtest/conf\pubring.gpg
+-------------------------
+pub 1024D/481240F5 2007-06-28
+uid Ant Elder (Code Signing Key) <antelder@apache.org>
+sub 2048g/F6F122B8 2007-06-28

+ +

Upload that to a key server using the keyid, eg gpg --send-key 481240F5

+ +

Now if you go to http://pgp.surfnet.nl/ you should be able to search for you name and find the uploaded key

+ + +

Add this key to the KEYS file in the Tuscany SVN: https://svn.apache.org/repos/asf/incubator/tuscany/KEYS
+eg, check out the KEYS file then update with:

+ +

(gpg --list-sigs antelder@apache.org && gpg --armor --export antelder@apache.org) >> KEYS

+ + + + + + +
+
+ +
+
+
+ + + + + + + +
+ + + \ No newline at end of file -- cgit v1.2.3