sethd.org
this is not the blog you're looking for

Resume
LinkedIn

RECENT ENTRIES

Interesting Modules 2010-09-03
36th Birthday
Book Blogging: Startide Rising
Android Tethering and Linux
Interesting Modules 2010-08-21
Moose Presentations
Time Spent In Sequoia
Good Perl Video Presentations
Time Spent In Yosemite
Yosemite and Sequoia National Parks 2010
Interesting Modules 2010-08-03
Several Months With A Smart Phone
Interesting Modules 2010-07-30
Recent Interesting Talks
Book Blogging: Bloodbrothers
Book Blogging: Fires of Freedom
Duck Duck Go
Yes, Yes, Yes
About That Lack of Blogging
Using A Smart Phone
Taking the Smart Phone Plunge (Maybe)
Book Blogging: Nemesis
Perl Not Going Away
OpenX Is Hiring Perl Developers
Perl Jobs vs Perl Programmers
Free Chapter From Effective Perl Programming
Perl On Android Progressing
Book Blogging: The Mote In God's Eye
Perldoc Is Important
The Second Age of Perl
A Description of Perl 5.12
Interesting Modules 2010-04-18
The Moral of This Story
Perl 5.12 Has Been Released
Packaging and Maintaining An Alternate Perl
Perl Moving Up?
Building Dependencies Like Make
Introduction To Plack
Defining Standard Testing Methodologies
Subversion Vision Released
Interesting Modules 2010-04-01
Perl Is Thriving
Interesting Modules 2010-03-29
Assign to $0
Jan 24, 2010

How To Create a Self-signed certificate

All information contained in this post comes from the SSL FAQ.

Create RSA private key

openssl genrsa -des3 -out server.key 512|1024|2048
(openssl rsa -noout -text -in server.key)

Create Certificate Signing Request (CSR)

openssl req -new -key server.key -out server.csr
(openssl req -noout -text -in server.csr)

Create own Certificate of Authority (CA) key

openssl genrsa -des3 -out ca.key 512|1024|2048
(openssl rsa -noout -text -in ca.key)

Create self-signed CA certificate

openssl req -new -x509 -days 3650 -key ca.key -out ca.crt
(openssl x509 -noout -text -in ca.crt)

Sign the server CSR and create a server certificate

openssl x509 -req -in server.csr -out server.crt -CA ca.cert -CAkey ca.key -CAcreateserial -days 3650

(Optional) Remove pass-phrase dialog (useful for Apache)

cp server.key server.key.org openssl rsa -in server.key.org -out server.key chmod 400 server.key

Buying a valid certificate

Follow the first two steps above Go to Instant SSL and order cert
(optional) Perform the last step once certificate received

Tags: , .
[p] Posted @ 21:39 by Seth


This site uses the very simple and easy to use blosxom blogging software.


Advanced Search
Search:
Entire Site This Topic Only
Match:
Any All
Partial Whole Words only

OTHER SITES