From 64cc39d3dd0c79701087f99978ad8134ab7db2dc Mon Sep 17 00:00:00 2001 From: Matthew Grooms Date: Sat, 9 Aug 2008 00:06:08 +0000 Subject: Implement a certificate authority and certificate webui that can be used to centrally manage this data. There are no consumers at this time. This interface allow for the following ... Certificate Authority Manager: - List certificates authorities - Import existing certificate authority - Create internal certificate authority Certificate Manager: - List certificates - Import existing certificate - Create internal certificate using an internal CA - Generate certificate signing request for external CAs - Process certificate signing response from external CAs Certificate revocation is not currently implemented. The user system will also be extended to allow for user specific certificate management in a follow-up commit. --- usr/local/www/system_usermanager.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'usr/local/www/system_usermanager.php') diff --git a/usr/local/www/system_usermanager.php b/usr/local/www/system_usermanager.php index e348dfe..eef39c3 100644 --- a/usr/local/www/system_usermanager.php +++ b/usr/local/www/system_usermanager.php @@ -262,6 +262,8 @@ function presubmit() { $tab_array = array(); $tab_array[] = array(gettext("Users"), true, "system_usermanager.php"); $tab_array[] = array(gettext("Groups"), false, "system_groupmanager.php"); + $tab_array[] = array(gettext("CAs"), false, "system_camanager.php"); + $tab_array[] = array(gettext("Certificates"), false, "system_certmanager.php"); $tab_array[] = array(gettext("Servers"), false, "system_authservers.php"); $tab_array[] = array(gettext("Settings"), false, "system_usermanager_settings.php"); display_top_tabs($tab_array); -- cgit v1.1