X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Fgnutlscert.pm;h=1204369a942a4855b2aa861b0d71a2d101085987;hb=0e118bb789b8830af06842d715d5206554b6e0d9;hp=d05f6f6a20b0c3c9041b97a93bb0650325c1cb02;hpb=f22b48724942fc07423c7a3c4540500c5bb4200a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/gnutlscert.pm b/make/gnutlscert.pm index d05f6f6a2..1204369a9 100644 --- a/make/gnutlscert.pm +++ b/make/gnutlscert.pm @@ -1,20 +1,47 @@ +# +# InspIRCd -- Internet Relay Chat Daemon +# +# Copyright (C) 2007 Dennis Friis +# Copyright (C) 2007 Craig Edwards +# +# This file is part of InspIRCd. InspIRCd is free software: you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + + package make::gnutlscert; +require 5.8.0; + +use strict; +use warnings FATAL => qw(all); + use Exporter 'import'; use make::configure; -@EXPORT = qw(make_gnutls_cert); +our @EXPORT = qw(make_gnutls_cert); sub make_gnutls_cert() { open (FH, ">certtool.template"); my $timestr = time(); - my $org = promptstring("Please enter the organization name", "My IRC Network"); - my $unit = promptstring("Please enter the unit Name", "Server Admins"); - my $state = promptstring("Pleae enter your state (two letter code)", "CA"); - my $country = promptstring("Please enter your country", "Oompa Loompa Land"); - my $commonname = promptstring("Please enter the certificate common name (hostname)", "irc.mynetwork.com"); - my $email = promptstring("Please enter a contact email address", "oompa\@loompa.com"); + my $commonname = promptstring_s('What is the hostname of your server?', 'irc.example.com'); + my $email = promptstring_s('What email address can you be contacted at?', 'example@example.com'); + my $unit = promptstring_s('What is the name of your unit?', 'Server Admins'); + my $org = promptstring_s('What is the name of your organization?', 'Example IRC Network'); + my $city = promptstring_s('What city are you located in?', 'Example City'); + my $state = promptstring_s('What state are you located in?', 'Example State'); + my $country = promptstring_s('What is the ISO 3166-1 code for the country you are located in?', 'XZ'); + my $days = promptstring_s('How many days do you want your certificate to be valid for?', '365'); print FH <<__END__; # X.509 Certificate options # @@ -27,13 +54,13 @@ organization = "$org" unit = "$unit" # The locality of the subject. -# locality = +locality = "$city" # The state of the certificate owner. state = "$state" # The country of the subject. Two letter code. -country = $country +country = "$country" # The common name of the certificate owner. cn = "$commonname" @@ -55,7 +82,7 @@ cn = "$commonname" serial = $timestr # In how many days, counting from today, this certificate will expire. -expiration_days = 700 +expiration_days = $days # X.509 v3 extensions @@ -106,9 +133,17 @@ ocsp_signing_key time_stamping_key __END__ close(FH); -system("certtool --generate-privkey --outfile key.pem"); -system("certtool --generate-self-signed --load-privkey key.pem --outfile cert.pem --template certtool.template"); +my $certtool = "certtool"; +if (`uname -s` eq "Darwin\n") { + # On OS X the certtool binary name is different to prevent + # collisions with the system certtool from NSS. + $certtool = "gnutls-certtool"; +} +if ( (my $status = system("$certtool --generate-privkey --outfile key.pem")) ne 0) { return 1; } +if ( (my $status = system("$certtool --generate-self-signed --load-privkey key.pem --outfile cert.pem --template certtool.template")) ne 0) { return 1; } unlink("certtool.template"); +return 0; } 1; +