]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - make/opensslcert.pm
Merge pull request #1050 from Aviator45003/insp20
[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         if (system 'openssl version >/dev/null 2>&1')
36         {
37                 print "\e[1;31mCertificate generation failed:\e[0m unable to find 'openssl' in the PATH!\n";
38                 return;
39         }
40         open (FH, ">openssl.template");
41         my $commonname = promptstring_s('What is the hostname of your server?', 'irc.example.com');
42         my $email = promptstring_s('What email address can you be contacted at?', 'example@example.com');
43         my $unit = promptstring_s('What is the name of your unit?', 'Server Admins');
44         my $org = promptstring_s('What is the name of your organization?', 'Example IRC Network');
45         my $city = promptstring_s('What city are you located in?', 'Example City');
46         my $state = promptstring_s('What state are you located in?', 'Example State');
47         my $country = promptstring_s('What is the ISO 3166-1 code for the country you are located in?', 'XZ');
48         my $time = promptstring_s('How many days do you want your certificate to be valid for?', '365');
49         print FH <<__END__;
50 $country
51 $state
52 $city
53 $org
54 $unit
55 $commonname
56 $email
57 __END__
58 close(FH);
59 system("cat openssl.template | openssl req -x509 -nodes -newkey rsa:1024 -keyout key.pem -out cert.pem -days $time 2>/dev/null");
60 system("openssl dhparam -out dhparams.pem 1024");
61 unlink("openssl.template");
62 }
63
64 1;