|
From: Lonnie A. <li...@lo...> - 2007-02-25 03:10:29
|
I found my answer...
------
You can also create one for yourself, using the openssl tool.
Step one - create the key and certificate request:
openssl req -new > cert.csr
Step two - remove the passphrase from the key:
openssl rsa -in privkey.pem -out key.pem
Step three - convert the certificate request into a signed certificate:
openssl x509 -in cert.csr -out cert.pem -req -signkey key.pem -
days 365
This creates four files. The ones you want are cert.pem and key.pem.
You don't need cert.csr and privkey.pem, and may remove them.
-----
For more info, look here:
http://downloads.openwrt.org/people/nico/man/man8/mini_httpd.8.html
On Feb 24, 2007, at 2:06 PM, Lonnie Abelbeck wrote:
> Hi,
>
> The current /etc/ssl/mini_httpd.pem certificate has expired.
>
> Does anyone have a script to create an AES-256 mini_httpd.pem for
> myself?
>
> Can I use the easy-rsa scripts from openvpn?
>
> I have yet to master this PKI stuff.
>
> Thanks!
>
> Lonnie
>
>
> ----------------------------------------------------------------------
> ---
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to
> share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?
> page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Astlinux-users mailing list
> Ast...@li...
> https://lists.sourceforge.net/lists/listinfo/astlinux-users
>
> Donations to support AstLinux are graciously accepted via PayPal to
> pa...@kr....
>
|