]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/opensslcert.pm
Fix indentation
[user/henk/code/inspircd.git] / make / opensslcert.pm
1 package make::opensslcert;
2
3 require 5.8.0;
4
5 use Exporter 'import';
6 use make::configure;
7 @EXPORT = qw(make_openssl_cert);
8
9
10 sub make_openssl_cert()
11 {
12         open (FH, ">openssl.template");
13         my $org = promptstring_s("Please enter the organization name", "My IRC Network");
14         my $unit = promptstring_s("Please enter the unit Name", "Server Admins");
15         my $country = promptstring_s("Please enter your country (two letter code)", "US");
16         my $state = promptstring_s("Please enter your state or locality name", "Alaska");
17         my $city = promptstring_s("Please enter your city", "Factory Town");
18         my $email = promptstring_s("Please enter a contact email address", "oompa\@loompa.com");
19         my $commonname = promptstring_s("Please enter the common name (domain name) of the irc server", "example.inspircd.org");
20         print FH <<__END__;
21 $country
22 $state
23 $city
24 $org
25 $unit
26 $commonname
27 $email
28 __END__
29 close(FH);
30
31 my $time = promptstring_s("Please enter the number of days that this certificate is valid for","365");
32         
33 system("cat openssl.template | openssl req -x509 -nodes -newkey rsa:1024 -keyout key.pem -out cert.pem -days $time 2>/dev/null");
34 system("openssl dhparam -out dhparams.pem 1024");
35 unlink("openssl.template");
36 }
37
38 1;