Hanno Böck To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. */ require_once("certs.php"); require_role(ROLE_SYSTEMUSER); title("Neues Zertifikat (CSR) erzeugen"); $section = 'vhosts_certs'; output("

Mit dieser Funktion können Sie ein neues Zertifikat erzeugen lassen. Dabei wird ein so genannter CSR (certifikate signing request) erzeugt. Diesen CSR müssen Sie dann (meistens per Webinterface) an Ihre Zertifizierungsstelle übergeben. Von dort erhalten Sie dann das fertige, unterschriebene Zertifikat zurück.

Um diese Funktion möglichst einfach zu halten, können Sie damit nicht alle Einstellungen eines CSR festlegen. Insbesondere die Angabe des Inhabers wurde hier entfernt. CAcert (und andere günstige CAs) würde diese Zusatzinformationen sowieso aus dem Zertifikat entfernen. Für eigene Einstellungen stehen Ihnen die OpenSSL-Programme in Ihrem Benutzeraccount zur Verfügung.

"); $bitselect = array(2048 => 2048, 4096 => 4096); $form = '

(Mehrere Hostnames ggf. mit Komma trennen.)

'.html_select('bitlength', $bitselect, 2048).'

'; output(html_form('vhosts_csr', 'savecert', 'action=newcsr', $form));