]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/opensslcert.pm
fd7bd6998070a3113ef8e7735f7eaf78cd3337f9
[user/henk/code/inspircd.git] / make / opensslcert.pm
1 #
2 # InspIRCd -- Internet Relay Chat Daemon
3 #
4 #   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5 #   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
6 #
7 # This file is part of InspIRCd.  InspIRCd is free software: you can
8 # redistribute it and/or modify it under the terms of the GNU General Public
9 # License as published by the Free Software Foundation, version 2.
10 #
11 # This program is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14 # details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20
21 package make::opensslcert;
22
23 require 5.8.0;
24
25 use strict;
26 use warnings FATAL => qw(all);
27
28 use Exporter 'import';
29 use make::configure;
30 our @EXPORT = qw(make_openssl_cert);
31
32
33 sub make_openssl_cert()
34 {
35         open (FH, ">openssl.template");
36         my $org = promptstring_s("Please enter the organization name", "My IRC Network");
37         my $unit = promptstring_s("Please enter the unit Name", "Server Admins");
38         my $country = promptstring_s("Please enter your country (two letter code)", "US");
39         my $state = promptstring_s("Please enter your state or locality name", "Alaska");
40         my $city = promptstring_s("Please enter your city", "Factory Town");
41         my $email = promptstring_s("Please enter a contact email address", "oompa\@loompa.com");
42         my $commonname = promptstring_s("Please enter the common name (domain name) of the irc server", "example.inspircd.org");
43         print FH <<__END__;
44 $country
45 $state
46 $city
47 $org
48 $unit
49 $commonname
50 $email
51 __END__
52 close(FH);
53
54 my $time = promptstring_s("Please enter the number of days that this certificate is valid for","365");
55
56 system("cat openssl.template | openssl req -x509 -nodes -newkey rsa:1024 -keyout key.pem -out cert.pem -days $time 2>/dev/null");
57 system("openssl dhparam -out dhparams.pem 1024");
58 unlink("openssl.template");
59 }
60
61 1;