search for: signkey

Displaying 5 results from an estimated 5 matches for "signkey".

2006 Mar 08
2
self-signed certificates
...ey and cert. But he is using the wrong common name (where does dovecot get this name from?). I tried deleting them and installing a handcrafted cert with this: openssl genrsa -out mail.key 2048 openssl req -new -key mail.key -out mail.csr openssl x509 -req -days 4312 -in mail.csr -out mail.cert -signkey mail.key after that i tried to update the dovecont.conf to point to the new files. But dovecot refuses to read them, i allways get an error, that dovecot can't read the certificate file. With dpkg-reconfigure dovecot-common, dovecot generates new ones, and they are working fine, but have t...
2013 Jul 15
1
trying to configre dovecot
Hi all; Thinking I'd like to have a bit of security, I followed the example for dovecot from allgoodthings.org Guessing between the lines I made a few substitutions to localize it for me, but when I run the line to dump the configs, the output is very short because I do not have the *.pem files. Where can a usable set of these ssl 'keyfiles' be obtained? Cheers, Gene --
2007 Nov 27
0
how do i use xen api with key and cert?
...o use the xen-api with key and cert System: - Debian Etch - Xen 3.1 compiled from source - python-pam installed - python-pyopenssl installed I did set up a key and a self signed cert: openssl genrsa -out ca.key 1024 openssl req -new -key ca.key -out ca.csr openssl x509 -req -days 365 -in ca.csr -signkey ca.key -out ca.crt put that under /root/ssl and modified /etc/ (xen-api-server ((9367 pam '''' /root/ssl/ca.key /root/ssl/ca.crt) (unix none))) restarted xend: /etc/init.d/xend restart seems to work : since in /var/log/xen/xend.log i found this line [2007-...
2004 Aug 16
0
Howto setup SLES 9 w/Samba 3.04 in a Domain & SSL SWAT
...server key generated above(output will be PEM formatted.) /usr/sbin/openssl req -new -key /etc/stunnel/swat.key -out /etc/stunnel/swat.csr 3. Create a self-signed certificate (X509 structure) the output will be PEM formatted. /usr/sbin/openssl x509 -req -days 365 -in /etc/stunnel/swat.csr -signkey /etc/stunnel/swat.key -out /etc/stunnel/swat.crt 4. Prepare certificate for stunnel. According to samba / stunnel documentation says that a blank line is needed between private key and certificate and another blank line at the end of the file echo "" > ~/blankline.txt cat /etc/...
2007 Nov 15
2
IPSEC help
...} --------------------------END------------------------------------------------------------------ certificate are created in bsd with following commands: openssl req -new -nodes -newkey rsa:1024 -sha1 -days 1095 -keyout bsd.private -out request.pem openssl x509 -req -in request.pem -days 1095 -signkey bsd.private -out bsd.public openssl pkcs12 -export -inkey bsd.private -in bsd.public -out win.p12 -name "win cert" ln -s bsd.public `openssl x509 -noout -hash -in bsd.public`.0 I have used win.p12 in windows 2000 prof. box for this process. Please anyone help me out to confi...