On Tue, 11 May 2004 15:59:40 +1000, Simon Wong wrote > Does anyone know if there's a way to generate a certificate that is > generated from my GPG key? It is a DSA key and it seems that most > certificates are RSA keys.
I don't know how to export your key from GPG, but once you do you can generate a self signed X509 certificate with the openssl package. openssl req -x509 -days 365 -key <KEY FILE> -out <CERT FILE> -- Nick Wilcox. -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
