aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README19
1 files changed, 19 insertions, 0 deletions
diff --git a/README b/README
index 5198ed7..34054b6 100644
--- a/README
+++ b/README
@@ -109,3 +109,22 @@ NameVirtualHost 1.2.3.4:443
109 GnuTLSClientCAFile ca.pem 109 GnuTLSClientCAFile ca.pem
110 GnuTLSPGPKeyringFile /etc/apache2/ring.asc 110 GnuTLSPGPKeyringFile /etc/apache2/ring.asc
111</VirtualHost> 111</VirtualHost>
112
113Create OpenPGP credentials for the server:
114
115IMPORTANT: mod_gnutls currently cannot read encrypted OpenPGP credentials. That
116is, when you generate a key with gpg and gpg prompts you for a passphrase, just
117press enter. Then press enter again, to confirm an empty passphrase.
118http://news.gmane.org/gmane.comp.apache.outoforder.modules
119
120These instructions are from the GnuTLS manual:
121http://www.gnu.org/software/gnutls/manual/html_node/Invoking-gnutls_002dserv.html#Invoking-gnutls_002dserv
122
123 $ gpg --gen-key
124 ...enter whatever details you want, use 'test.gnutls.org' as name...
125
126Make a note of the OpenPGP key identifier of the newly generated key, here it
127was 5D1D14D8. You will need to export the key for GnuTLS to be able to use it.
128
129 $ gpg -a --export 5D1D14D8 > openpgp-server.txt
130 $ gpg -a --export-secret-keys 5D1D14D8 > openpgp-server-key.txt
ls/tag/?h=0.2.0'>0.2.00.2.xGravatar Paul Querna 2005-04-25 | * apr_table_setn doesn't copy the data. oops.Gravatar Paul Querna 2005-04-24 | * We already have a Certificate, use it directly. With SNI, GnuTLS doesn't ↵Gravatar Paul Querna 2005-04-24 | | | | properly update it's internal state. ick. * if there aren't any certs.. still set something.Gravatar Paul Querna 2005-04-24 | * add SSL_SERVER_S_DN and SSL_SERVER_I_DN Gravatar Paul Querna 2005-04-24 | * - move hooks to gnutls_hooks.cGravatar Paul Querna 2005-04-24 | | | | | - use 'mgs_' as the prefix for all symbols, instead of mixed prefixes. * move config functions to their own file. Gravatar Paul Querna 2005-04-24 | * - remove more debug logging.Gravatar Paul Querna 2005-04-22 | | | | | - fix a crash by changing the certificate structure *after* starting the handshake. * client auth is sort of working.Gravatar Paul Querna 2005-04-22 | * working SNI. Not so working Client Cert support.Gravatar Paul Querna 2005-04-21 | * include support for 2.0.xxGravatar Paul Querna