├── ChangeLog ├── I18N ├── INSTALL ├── INSTALL.SOLARIS ├── INSTALL.UBUNTU ├── LICENSE ├── Makefile ├── Makefile.devel ├── Makefile.global-vars.in ├── NOTES.Chain ├── README ├── RELEASE-NOTES ├── STATUS ├── THANKS ├── VERSION ├── aclocal.m4 ├── build ├── compile ├── config.guess ├── config.sub ├── install-sh ├── ltmain.sh └── missing ├── configs ├── configure.pkg.ca_FC4 └── examples │ ├── configure.default │ ├── configure.fedora_ca │ ├── configure.fedora_ra │ ├── configure.madwolf │ ├── configure.michael │ ├── configure.michael_solaris │ ├── configure.openca │ ├── configure.redhat │ ├── configure.redhat_ca_rpm │ ├── configure.redhat_ra_rpm │ ├── configure.redhat_rpm │ ├── configure.suse │ ├── configure.suse_ca_rpm │ ├── configure.suse_ra_rpm │ └── configure.suse_rpm ├── configure ├── configure.ac ├── contrib ├── OpenCA.spec ├── OpenCA.spec.orig ├── access-control-with-ldap.xml ├── apache │ ├── CA │ ├── RAServer │ ├── README │ ├── ca.conf.example │ ├── common.conf.in │ ├── httpd.conf.example │ ├── offline.conf.in │ ├── online.conf.in │ └── raserver.conf.example ├── build-dist.sh ├── build-snap.sh ├── install-builder │ ├── images │ │ ├── openca_installer.png │ │ └── openca_splash.png │ ├── openca-base.xml.in │ └── openca │ │ ├── batch.xml.in │ │ ├── ca.xml.in │ │ ├── common.xml.in │ │ ├── ldap.xml.in │ │ ├── node.xml.in │ │ ├── openssl.xml.in │ │ ├── pub.xml.in │ │ ├── ra.xml.in │ │ ├── scep.xml.in │ │ └── share.xml.in ├── openldap │ ├── generatedb │ ├── openca.ldif │ ├── openca.schema │ └── slapd.conf └── openssl │ └── openssl.cnf ├── docs ├── CHANGES_1.0.2 ├── HISTORY ├── Makefile └── man3 │ ├── base.3 │ └── base.3.pod ├── libtool ├── m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── relative_ln_s.sh ├── relative_ln_s.sh.in └── src ├── Makefile ├── common ├── Makefile ├── etc │ ├── .#common.conf.template.1.7 │ ├── Makefile │ ├── agreements │ │ ├── Makefile │ │ ├── general.html │ │ └── low.html │ ├── auth_browser_req.xml.template │ ├── backup.xml.template │ ├── bp │ │ ├── Makefile │ │ ├── bp.xml.in │ │ ├── functions.txt │ │ ├── functions │ │ │ ├── Makefile │ │ │ ├── approve_csr.txt │ │ │ ├── backup_key.txt │ │ │ ├── check_csr.txt │ │ │ ├── check_csr_params.txt │ │ │ ├── check_key.txt │ │ │ ├── check_key_params.txt │ │ │ ├── check_pin.txt │ │ │ ├── complete_csr.txt │ │ │ ├── create_cert.txt │ │ │ ├── create_csr.txt │ │ │ ├── create_key.txt │ │ │ ├── create_pin.txt │ │ │ ├── enroll_pin.txt │ │ │ ├── enroll_pkcs12.txt │ │ │ ├── postproc_cert.txt │ │ │ ├── receive_csr.txt │ │ │ └── upload_csr.txt │ │ └── states.txt │ ├── browser_req.xml.template │ ├── common.conf.template.in │ ├── config.xml.in │ ├── configure_etc.sh.in │ ├── database │ │ ├── DBI.conf.template │ │ └── Makefile │ ├── datasources.xml.template │ ├── includes │ │ ├── Makefile │ │ ├── home_body.inc │ │ ├── home_body.inc.de_DE │ │ ├── home_body.inc.de_DE.old │ │ ├── home_body.inc.es_ES │ │ ├── home_body.inc.it_IT │ │ ├── home_body.inc.pl_PL │ │ └── home_body.inc.ro_RO │ ├── ldap.xml.template │ ├── loa.xml.in │ ├── log.xml.in │ ├── openca.in │ ├── openca_start.template.in │ ├── openca_stop.template.in │ ├── openssl │ │ ├── Makefile │ │ ├── extfiles │ │ │ ├── CA_Operator.ext.in │ │ │ ├── Cross_CA.ext.in │ │ │ ├── Domain_Controller.ext.in │ │ │ ├── Mail_Server.ext.in │ │ │ ├── Makefile │ │ │ ├── OCSP_Server.ext.in │ │ │ ├── PRQP_Server.ext.in │ │ │ ├── RA_Operator.ext.in │ │ │ ├── Self_Signed_CA.ext.in │ │ │ ├── Sub-CA.ext.in │ │ │ ├── User.ext.in │ │ │ ├── VPN_Server.ext.in │ │ │ └── Web_Server.ext.in │ │ ├── openssl.cnf.in │ │ ├── openssl │ │ │ ├── CA_Operator.conf.in │ │ │ ├── Cross_CA.conf.in │ │ │ ├── Domain_Controller.conf.in │ │ │ ├── Mail_Server.conf.in │ │ │ ├── Makefile │ │ │ ├── OCSP_Server.conf.in │ │ │ ├── PRQP_Server.conf.in │ │ │ ├── RA_Operator.conf.in │ │ │ ├── Sub-CA.conf.in │ │ │ ├── User.conf.in │ │ │ ├── VPN_Server.conf.in │ │ │ ├── VPN_User.conf.in │ │ │ └── Web_Server.conf.in │ │ ├── sample-openssl.conf.in │ │ └── sample-openssl.ext.in │ ├── rbac │ │ ├── Makefile │ │ ├── acl.xml │ │ ├── cmds │ │ │ ├── Makefile │ │ │ ├── addCRR.xml │ │ │ ├── add_module.xml │ │ │ ├── add_right.xml │ │ │ ├── add_role.xml │ │ │ ├── add_script.xml │ │ │ ├── advanced_csr.xml │ │ │ ├── approveCRR.xml │ │ │ ├── approveCRRnotSigned.xml │ │ │ ├── approveCSR.xml │ │ │ ├── approveCSRnotSigned.xml │ │ │ ├── authenticated_csr.xml │ │ │ ├── basic_csr.xml │ │ │ ├── bpDeletePIN.xml │ │ │ ├── bpDoFunction.xml │ │ │ ├── bpDoStep.xml │ │ │ ├── bpExportPIN.xml │ │ │ ├── bpImportNewProcess.xml │ │ │ ├── bpImportNewUser.xml │ │ │ ├── bpImportProcessData.xml │ │ │ ├── bpImportProcessDataCompact.xml │ │ │ ├── bpImportUpdateUser.xml │ │ │ ├── bpIssueCertificate.xml │ │ │ ├── bpListProcess.xml │ │ │ ├── bpListUser.xml │ │ │ ├── bpRecoverCert.xml │ │ │ ├── bpRecoverKey.xml │ │ │ ├── bpRevokeCertificate.xml │ │ │ ├── bpSetState.xml │ │ │ ├── bpUnsetState.xml │ │ │ ├── bpViewProcess.xml │ │ │ ├── changeCRR.xml │ │ │ ├── changeCSR.xml │ │ │ ├── changePasswd.xml │ │ │ ├── cleanupSessions.xml │ │ │ ├── confirm_revreq.xml │ │ │ ├── crlList.xml │ │ │ ├── deleteCRR.xml │ │ │ ├── deleteCSR.xml │ │ │ ├── deleteListCSR.xml │ │ │ ├── deletePasswd.xml │ │ │ ├── delete_module.xml │ │ │ ├── delete_right.xml │ │ │ ├── delete_script.xml │ │ │ ├── editCRR.xml │ │ │ ├── editCSR.xml │ │ │ ├── exportCAReqCert.xml │ │ │ ├── exportDB.xml │ │ │ ├── find_undef_cmds.pl │ │ │ ├── genCACert.xml │ │ │ ├── genCAReq.xml │ │ │ ├── genCRL.xml │ │ │ ├── genCRLfromFile.xml │ │ │ ├── genDB.xml │ │ │ ├── genMenu.xml │ │ │ ├── genSKey.xml │ │ │ ├── getMenu.xml │ │ │ ├── getParams.xml │ │ │ ├── getStaticPage.xml │ │ │ ├── getcacert.xml │ │ │ ├── getcert.xml │ │ │ ├── hsmLogin.xml │ │ │ ├── hsmLogout.xml │ │ │ ├── importCACert.xml │ │ │ ├── importDB.xml │ │ │ ├── issueCertificate.xml │ │ │ ├── ldapAddCRL.xml │ │ │ ├── ldapAddCRLbyName.xml │ │ │ ├── ldapAddCert.xml │ │ │ ├── ldapAddCertByName.xml │ │ │ ├── ldapAddCerts.xml │ │ │ ├── ldapCreateCSR.xml │ │ │ ├── ldapDeleteCert.xml │ │ │ ├── ldapDeleteCertByName.xml │ │ │ ├── ldapImportCerts.xml │ │ │ ├── ldapUpdate.xml │ │ │ ├── ldapUpdateCA.xml │ │ │ ├── ldapUpdateCRL.xml │ │ │ ├── ldapUpdateCerts.xml │ │ │ ├── listCRR.xml │ │ │ ├── listCSR.xml │ │ │ ├── listCerts.xml │ │ │ ├── lists.xml │ │ │ ├── logRecovery.xml │ │ │ ├── newUser.xml │ │ │ ├── new_module.xml │ │ │ ├── new_right.xml │ │ │ ├── new_role.xml │ │ │ ├── new_script.xml │ │ │ ├── new_user.xml │ │ │ ├── nodeDownloadAll.xml │ │ │ ├── nodeDownloadBP.xml │ │ │ ├── nodeDownloadCRL.xml │ │ │ ├── nodeDownloadCert.xml │ │ │ ├── nodeDownloadConfig.xml │ │ │ ├── nodeEnrollAll.xml │ │ │ ├── nodeEnrollBP.xml │ │ │ ├── nodeEnrollCACert.xml │ │ │ ├── nodeEnrollCRL.xml │ │ │ ├── nodeEnrollCert.xml │ │ │ ├── nodeEnrollConfig.xml │ │ │ ├── nodeReceiveAll.xml │ │ │ ├── nodeReceiveCRR.xml │ │ │ ├── nodeReceiveCSR.xml │ │ │ ├── nodeUploadAll.xml │ │ │ ├── nodeUploadCRR.xml │ │ │ ├── nodeUploadCSR.xml │ │ │ ├── pkcs10_req.xml │ │ │ ├── raList.xml │ │ │ ├── rebuildChain.xml │ │ │ ├── rebuildOpenSSLindexDB.xml │ │ │ ├── removeFiles.xml │ │ │ ├── removeItem.xml │ │ │ ├── removeKey.xml │ │ │ ├── renewCSR.xml │ │ │ ├── replayLog.xml │ │ │ ├── revokeCertificate.xml │ │ │ ├── revoke_req.xml │ │ │ ├── scepGetCACert.xml │ │ │ ├── scepPKIOperation.xml │ │ │ ├── search.xml │ │ │ ├── searchCert.xml │ │ │ ├── search_rights.xml │ │ │ ├── sendCRINMail.xml │ │ │ ├── sendMail.xml │ │ │ ├── send_cert_key.xml │ │ │ ├── send_cert_key_openssl.xml │ │ │ ├── send_cert_key_pkcs12.xml │ │ │ ├── send_cert_key_pkcs8.xml │ │ │ ├── send_email_cert.xml │ │ │ ├── sendcert.xml │ │ │ ├── serverInfo.xml │ │ │ ├── setLanguage.xml │ │ │ ├── setPasswd.xml │ │ │ ├── setupInitialCert.xml │ │ │ ├── show_modules.xml │ │ │ ├── show_prepared_module.xml │ │ │ ├── show_prepared_right.xml │ │ │ ├── show_prepared_role.xml │ │ │ ├── show_prepared_script.xml │ │ │ ├── show_rights.xml │ │ │ ├── show_roles.xml │ │ │ ├── show_script.xml │ │ │ ├── show_scripts.xml │ │ │ ├── signConfig.xml │ │ │ ├── startAutoCA.xml │ │ │ ├── startAutoCRL.xml │ │ │ ├── startAutoEmail.xml │ │ │ ├── startAutoRevoke.xml │ │ │ ├── stats.xml │ │ │ ├── statusAutoCA.xml │ │ │ ├── statusAutoCRL.xml │ │ │ ├── statusAutoEmail.xml │ │ │ ├── statusAutoRevoke.xml │ │ │ ├── stopAutoCA.xml │ │ │ ├── stopAutoCRL.xml │ │ │ ├── stopAutoEmail.xml │ │ │ ├── stopAutoRevoke.xml │ │ │ ├── stopDaemon.xml │ │ │ ├── submit_revreq.xml │ │ │ ├── test_cert.xml │ │ │ ├── updateOCSPindexDB.xml │ │ │ ├── updateSearchAttributes.xml │ │ │ ├── upgradeDB.xml │ │ │ ├── verifyEmail.xml │ │ │ ├── verifyPIN.xml │ │ │ ├── verifySignature.xml │ │ │ ├── viewCRL.xml │ │ │ ├── viewCRR.xml │ │ │ ├── viewCSR.xml │ │ │ ├── viewCert.xml │ │ │ ├── viewCertFull.xml │ │ │ ├── viewLoas.xml │ │ │ ├── viewLog.xml │ │ │ ├── viewSignature.xml │ │ │ ├── warnExpiring.xml │ │ │ └── writeCertMail.xml │ │ ├── modules.xml │ │ └── roles.xml │ ├── server_req.xml.template │ ├── token.xml.in │ └── utf8_latin1_selector.sh.template.in ├── lib │ ├── Makefile │ ├── bp │ │ ├── Makefile │ │ ├── backup_key.sub │ │ ├── check_csr.sub │ │ ├── check_csr_params.sub │ │ ├── check_key.sub │ │ ├── check_key_params.sub │ │ ├── check_pin.sub │ │ ├── complete_csr.sub │ │ ├── create_cert.sub │ │ ├── create_csr.sub │ │ ├── create_key.sub │ │ ├── create_pin.sub │ │ ├── enroll_pin.sub │ │ └── enroll_pkcs12.sub │ ├── cmds │ │ ├── Makefile │ │ ├── addCRR │ │ ├── add_module │ │ ├── add_right │ │ ├── add_role │ │ ├── add_script │ │ ├── advanced_csr │ │ ├── approveCRR │ │ ├── approveCRRnotSigned │ │ ├── approveCSR │ │ ├── approveCSRnotSigned │ │ ├── authenticated_csr │ │ ├── basic_csr │ │ ├── basic_csr_2 │ │ ├── bpDeletePIN │ │ ├── bpDoFunction │ │ ├── bpDoStep │ │ ├── bpExportPIN │ │ ├── bpImportNewProcess │ │ ├── bpImportNewUser │ │ ├── bpImportProcessData │ │ ├── bpImportProcessDataCompact │ │ ├── bpImportUpdateUser │ │ ├── bpIssueCertificate │ │ ├── bpListProcess │ │ ├── bpListUser │ │ ├── bpRecoverCert │ │ ├── bpRecoverKey │ │ ├── bpRevokeCertificate │ │ ├── bpSetState │ │ ├── bpUnsetState │ │ ├── bpViewProcess │ │ ├── changeCRR │ │ ├── changeCSR │ │ ├── changePasswd │ │ ├── cleanupSessions │ │ ├── confirm_revreq │ │ ├── crlList │ │ ├── deleteCRR │ │ ├── deleteCSR │ │ ├── deleteListCSR │ │ ├── deletePasswd │ │ ├── delete_module │ │ ├── delete_right │ │ ├── editCRR │ │ ├── editCSR │ │ ├── exportCAReqCert │ │ ├── exportDB │ │ ├── genCACert │ │ ├── genCAReq │ │ ├── genCRL │ │ ├── genCRLfromFile │ │ ├── genDB │ │ ├── genMenu │ │ ├── genSKey │ │ ├── getMenu │ │ ├── getParams │ │ ├── getStaticPage │ │ ├── getcert │ │ ├── hsmLogin │ │ ├── hsmLogout │ │ ├── importCACert │ │ ├── importDB │ │ ├── issueCertificate │ │ ├── ldapAddCRL │ │ ├── ldapAddCRLbyName │ │ ├── ldapAddCert │ │ ├── ldapAddCertByName │ │ ├── ldapAddCerts │ │ ├── ldapCreateCSR │ │ ├── ldapDeleteCert │ │ ├── ldapDeleteCertByName │ │ ├── ldapImportCerts │ │ ├── ldapUpdate │ │ ├── ldapUpdateCA │ │ ├── ldapUpdateCRL │ │ ├── ldapUpdateCerts │ │ ├── listCRR │ │ ├── listCSR │ │ ├── listCerts │ │ ├── lists │ │ ├── logRecovery │ │ ├── newUser │ │ ├── new_module │ │ ├── new_right │ │ ├── new_role │ │ ├── new_user │ │ ├── nodeDownloadAll │ │ ├── nodeDownloadBP │ │ ├── nodeDownloadCRL │ │ ├── nodeDownloadCert │ │ ├── nodeDownloadConfig │ │ ├── nodeEnrollAll │ │ ├── nodeEnrollBP │ │ ├── nodeEnrollCACert │ │ ├── nodeEnrollCRL │ │ ├── nodeEnrollCert │ │ ├── nodeEnrollConfig │ │ ├── nodeReceiveAll │ │ ├── nodeReceiveCRR │ │ ├── nodeReceiveCSR │ │ ├── nodeUploadAll │ │ ├── nodeUploadCRR │ │ ├── nodeUploadCSR │ │ ├── pkcs10_req │ │ ├── raList │ │ ├── rebuildChain │ │ ├── rebuildOpenSSLindexDB │ │ ├── removeFiles │ │ ├── removeItem │ │ ├── removeKey │ │ ├── renewCSR │ │ ├── revokeCertificate │ │ ├── revoke_req │ │ ├── scepGetCACert │ │ ├── scepPKIOperation │ │ ├── search │ │ ├── search_rights │ │ ├── sendCRINMail │ │ ├── sendMail │ │ ├── send_cert_key │ │ ├── send_cert_key_openssl │ │ ├── send_cert_key_pkcs12 │ │ ├── send_cert_key_pkcs8 │ │ ├── send_email_cert │ │ ├── sendcert │ │ ├── serverInfo │ │ ├── setLanguage │ │ ├── setPasswd │ │ ├── setupInitialCert │ │ ├── show_modules │ │ ├── show_prepared_module │ │ ├── show_prepared_right │ │ ├── show_prepared_role │ │ ├── show_rights │ │ ├── show_roles │ │ ├── signConfig │ │ ├── startAutoCA │ │ ├── startAutoCRL │ │ ├── startAutoEmail │ │ ├── startAutoRevoke │ │ ├── stats │ │ ├── statusAutoCA │ │ ├── statusAutoCRL │ │ ├── statusAutoEmail │ │ ├── statusAutoRevoke │ │ ├── stopAutoCA │ │ ├── stopAutoCRL │ │ ├── stopAutoEmail │ │ ├── stopAutoRevoke │ │ ├── stopDaemon │ │ ├── submit_revreq │ │ ├── test_cert │ │ ├── updateOCSPindexDB │ │ ├── updateSearchAttributes │ │ ├── upgradeDB │ │ ├── verifyEmail │ │ ├── verifyPIN │ │ ├── verifySignature │ │ ├── viewCRL │ │ ├── viewCRR │ │ ├── viewCSR │ │ ├── viewCert │ │ ├── viewCertFull │ │ ├── viewLoas │ │ ├── viewLog │ │ ├── viewSignature │ │ ├── warnExpiring │ │ └── writeCertMail │ ├── functions │ │ ├── Makefile │ │ ├── crypto-utils.lib │ │ ├── daemon-utils.lib │ │ ├── datasource-utils.lib │ │ ├── export-import.lib │ │ ├── initCGI │ │ ├── initDB │ │ ├── initDBI │ │ ├── initLDAP │ │ ├── initRBAC │ │ ├── initServer │ │ ├── ldap-utils.lib │ │ ├── log-utils.lib │ │ ├── mail-utils.lib │ │ ├── misc-utils.lib │ │ ├── rbac-utils.lib │ │ └── request-utils.lib │ ├── images │ │ ├── back_item.png │ │ ├── big_openca_logo2.jpg │ │ ├── bottom_back.png │ │ ├── bulb.png │ │ ├── cert-icon.png │ │ ├── certicon_med.png │ │ ├── certicon_small.png │ │ ├── certicon_small_off.png │ │ ├── config-icon.png │ │ ├── digid_logo.gif │ │ ├── digid_logo.png │ │ ├── email_link.png │ │ ├── home.png │ │ ├── home_back_1.png │ │ ├── home_off.png │ │ ├── info-big-2.png │ │ ├── info-big.png │ │ ├── info-key.png │ │ ├── info-new.png │ │ ├── info.gif │ │ ├── info.png │ │ ├── install.png │ │ ├── left_off.gif │ │ ├── left_off.png │ │ ├── left_on.png │ │ ├── logout.png │ │ ├── logout_off.png │ │ ├── menu_center.png │ │ ├── menu_left.gif │ │ ├── menu_left.png │ │ ├── menu_right.gif │ │ ├── menu_right.png │ │ ├── message_new.png │ │ ├── message_new_off.png │ │ ├── notSigned.png │ │ ├── notice_new.png │ │ ├── notice_new_off.png │ │ ├── openca-logo.png │ │ ├── openca_logo.jpg │ │ ├── openca_logo2.jpg │ │ ├── openca_main_back_big_col_logo.png │ │ ├── openca_main_back_col_1.png │ │ ├── openca_main_back_col_2.png │ │ ├── panel_back.png │ │ ├── print_link.png │ │ ├── profileicon.png │ │ ├── profileicon_off.png │ │ ├── right_off.gif │ │ ├── right_off.png │ │ ├── right_on.png │ │ ├── search.png │ │ ├── sigError.png │ │ ├── step_1.png │ │ ├── step_2.png │ │ ├── step_3.png │ │ ├── top_back.png │ │ ├── top_logo.png │ │ └── validSig.png │ ├── javascript │ │ ├── C │ │ │ ├── general.js │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── openca-menu.js │ │ │ ├── signForm.js │ │ │ ├── signForm.vbs │ │ │ └── tools.js │ │ ├── de_DE │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ ├── el_GR │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ ├── en_GB │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ ├── es_ES │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ ├── fr_FR │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ ├── it_IT │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ ├── ja_JP │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ ├── pl_PL │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ ├── ru_RU │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ │ └── sl_SI │ │ │ ├── ieCSR.js │ │ │ ├── ieEnroll.js │ │ │ ├── ieVistaCSR.js │ │ │ ├── ieVistaEnroll.js │ │ │ ├── nssCSR.js │ │ │ ├── signForm.js │ │ │ └── signForm.vbs │ ├── locale │ │ ├── Makefile │ │ ├── de_DE │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── el_GR │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── en_GB │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── es_ES │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── files │ │ │ ├── Makefile │ │ │ ├── bp.list │ │ │ ├── cmds.list │ │ │ ├── functions.list │ │ │ ├── menu.list │ │ │ ├── modules.list │ │ │ ├── openca.files │ │ │ └── order_files.pl │ │ ├── fr_FR │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── it_IT │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── ja_JP │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── openca-extra.pot │ │ ├── openca-xgettext.pot │ │ ├── openca.pot │ │ ├── pl_PL │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── pot │ │ │ ├── Makefile │ │ │ ├── bp.pot │ │ │ ├── cmds.pot │ │ │ ├── exclude_bp.pot │ │ │ ├── exclude_cmds.pot │ │ │ ├── exclude_functions.pot │ │ │ ├── exclude_menu.pot │ │ │ ├── exclude_modules.pot │ │ │ ├── functions.pot │ │ │ ├── menu.pot │ │ │ ├── modules.pot │ │ │ ├── remove_perl.pl │ │ │ └── remove_revision.pl │ │ ├── pt_PT │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ ├── ru_RU │ │ │ ├── openca.mo │ │ │ └── openca.po │ │ └── sl_SI │ │ │ ├── openca.mo │ │ │ └── openca.po │ ├── mails │ │ ├── C │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── Makefile │ │ ├── de_DE │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── el_GR │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── en_GB │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── es_ES │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── fr_FR │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── it_IT │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── ja_JP │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── pl_PL │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ ├── ru_RU │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ │ └── sl_SI │ │ │ ├── certsMail.msg │ │ │ ├── confirm_cert_sign.msg │ │ │ ├── expiringMail.msg │ │ │ ├── request_pin_mail.msg │ │ │ ├── secure_pin_mail.msg │ │ │ └── verifyMail.msg │ └── stylesheets │ │ ├── Makefile │ │ ├── default.css │ │ ├── dynmenu-openca.css │ │ ├── main-openca.css │ │ ├── menu-openca.css │ │ └── openca-home-2.css └── var │ ├── Makefile │ ├── crypto │ ├── Makefile │ ├── Makefile.crt.in │ ├── crlnumber │ ├── index.txt │ ├── index.txt.attr │ └── serial │ ├── empty.txt │ └── mail │ ├── Makefile │ └── mailcounter ├── ext-modules ├── Authen-SASL-2.15.tar.gz ├── Bit-Vector-7.3.tar.gz ├── CGI-Session-4.48.tar.gz ├── CGI.pm-4.03.tar.gz ├── Convert-ASN1-0.22.tar.gz ├── DBD-Pg-3.5.3.tar.gz ├── DBD-mysql-4.027.tar.gz ├── DBI-1.636.tar.gz ├── DB_File-1.831.tar.gz ├── Digest-HMAC-1.03.tar.gz ├── Digest-MD5-2.51.tar.gz ├── Digest-SHA-5.92.tar.gz ├── Digest-SHA1-2.13.tar.gz ├── FCGI-0.75.tar.gz ├── File-Temp-0.22.tar.gz ├── IO-Socket-SSL-1.31.tar.gz ├── IO-stringy-2.110.tar.gz ├── MIME-Base64-3.14.tar.gz ├── MIME-Lite-3.027.tar.gz ├── MIME-tools-5.502.tar.gz ├── MailTools-2.09.tar.gz ├── Makefile ├── Net-SSLeay-1.40.tar.gz ├── Net-Server-2.007.tar.gz ├── Parse-RecDescent-1.94.tar.gz ├── URI-1.52.tar.gz ├── X500-DN-0.29.tar.gz ├── XML-Parser-2.41.tar.gz ├── XML-SAX-Base-1.08.tar.gz ├── XML-Twig-3.39-1.tar.gz ├── libintl-perl-1.20.tar.gz ├── perl-ldap-0.43.tar.gz └── version-0.9917.tar.gz ├── modules ├── Makefile ├── openca-ac │ ├── AC.pm │ ├── AC.pod │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ └── t │ │ └── use.t ├── openca-configuration │ ├── Changes │ ├── Configuration.pm │ ├── Configuration.pod │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ ├── docs │ │ ├── API.txt │ │ └── History │ ├── examples │ │ ├── ReadCfg.pl │ │ └── RegAuth.conf │ └── test.pl ├── openca-crl │ ├── CRL.pm │ ├── CRL.pod │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── prova.pl │ └── test.pl ├── openca-crypto │ ├── Changes │ ├── Crypto.pm │ ├── Crypto.pod │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ ├── Token │ │ ├── Empty.pm │ │ ├── LunaCA3.pm │ │ ├── OpenSC.pm │ │ ├── OpenSSL.pm │ │ └── nCipher.pm │ └── t │ │ └── use.t ├── openca-dbi │ ├── Changes │ ├── DBI.pm │ ├── DBI.pm.1.50 │ ├── DBI.pm.patched │ ├── DBI.pod │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ ├── openca-base-1.3.0-dbichkinput-1.patch │ ├── openca-base-1.3.0-dbileak1-1.patch │ └── prova.pl ├── openca-ldap │ ├── Changes │ ├── LDAP.pm │ ├── LICENSE │ ├── MANIFEST │ └── Makefile.PL ├── openca-log │ ├── Changes │ ├── LICENSE │ ├── Log.pm │ ├── Log.pod │ ├── Log │ │ └── Message.pm │ ├── Logger │ │ ├── Syslog.pm │ │ ├── Syslog │ │ │ ├── Net.pm │ │ │ ├── Sys.pm │ │ │ └── Unix.pm │ │ └── XML.pm │ ├── MANIFEST │ ├── Makefile.PL │ └── README ├── openca-openssl │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── OpenSSL.pm │ ├── OpenSSL.pod │ ├── OpenSSL.xs │ ├── OpenSSL │ │ ├── SMIME.pm │ │ └── SMIME.pod │ ├── const-c.inc │ ├── const-xs.inc │ ├── doc │ │ └── openca-openssl.html │ ├── fallback │ │ ├── const-c.inc │ │ └── const-xs.inc │ ├── ppport.h │ ├── t │ │ ├── 1.t │ │ ├── 2.t │ │ ├── 3.t │ │ ├── 4.t │ │ ├── 5.t │ │ ├── 6.t │ │ ├── testcert.der │ │ ├── testcert.pem │ │ ├── testcert.txt │ │ ├── testcrl.der │ │ ├── testcrl.pem │ │ ├── testreq.der │ │ ├── testreq.pem │ │ └── testreq.spkac │ ├── t3_20.new │ ├── t3_20.org │ ├── test.pl │ ├── test │ │ └── openssl_test.pl │ ├── test_smime.pl │ └── typemap ├── openca-pkcs7 │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── PKCS7.pm │ ├── PKCS7.pod │ ├── test.pl │ └── test │ │ ├── TEXT │ │ ├── TEXT.sig │ │ ├── cacert.pem │ │ ├── chain │ │ ├── 6b950e78.0 │ │ ├── Makefile │ │ └── cacert.crt │ │ └── pkcs7_test.pl ├── openca-req │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── REQ.pm │ ├── REQ.pod │ ├── prova.pl │ ├── spkac.req │ └── test.pl ├── openca-session │ ├── Changes │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ ├── Session.pm │ ├── Session.pod │ └── Session │ │ ├── CGI.pm │ │ └── CLI.pm ├── openca-statemachine │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── MODEL │ ├── Makefile.PL │ ├── README │ ├── StateMachine.pm │ └── t │ │ ├── 1.t │ │ ├── 2.t │ │ ├── 3.t │ │ ├── 4.t │ │ └── testdata.tar ├── openca-tools │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── Tools.pm │ ├── Tools.pod │ ├── prova.pl │ └── test.pl ├── openca-tristatecgi │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ ├── TRIStateCGI.pm │ ├── TRIStateCGI.pod │ └── test.pl ├── openca-ui-html │ ├── Changes │ ├── HTML.pm │ ├── LICENSE │ ├── MANIFEST │ └── Makefile.PL ├── openca-user │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── User.pm │ └── t │ │ └── test_1.t ├── openca-x509 │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── X509.pm │ ├── X509.pod │ ├── prova.pl │ └── test.pl └── openca-xml-cache │ ├── Cache.pm │ ├── Cache.pod │ ├── Changes │ ├── LICENSE │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ └── t │ ├── 1.t │ ├── test.log │ ├── test.pid │ └── test.xml ├── scripts ├── Makefile ├── modver.in ├── openca-addcert.in ├── openca-addreq.in ├── openca-backup.in ├── openca-browserexp.in ├── openca-configure.in ├── openca-dbbuild.in ├── openca-dbcreate.in ├── openca-dblist.in ├── openca-dbview.in ├── openca-digest.in ├── openca-getcert.in ├── openca-getitem.in ├── openca-importcerts.in ├── openca-importreqs.in ├── openca-menu-translate.in ├── openca-newcert.in ├── openca-setpasswd.in ├── openca-unrevoke.in ├── openca-useradmin.in └── openssl-setopt.in └── web-interfaces ├── Makefile ├── batch ├── Makefile ├── access_control.xml.in ├── batch-menu.xml ├── batch-menu.xml.in ├── batch.conf.in ├── batch.in └── htdocs │ ├── Makefile │ ├── images │ └── Makefile │ ├── index.html │ └── scripts │ └── Makefile ├── ca ├── Makefile ├── access_control.xml.in ├── ca-menu.xml ├── ca-menu.xml.in ├── ca.conf.in ├── ca.in └── htdocs │ ├── Makefile │ ├── images │ └── Makefile │ ├── index.html │ └── scripts │ └── Makefile ├── ldap ├── Makefile ├── access_control.xml.in ├── htdocs │ ├── Makefile │ ├── images │ │ └── Makefile │ ├── index.html │ └── scripts │ │ └── Makefile ├── ldap-menu.xml ├── ldap-menu.xml.in ├── ldap.conf.in └── ldap.in ├── node ├── Makefile ├── access_control.xml.in ├── htdocs │ ├── Makefile │ ├── images │ │ └── Makefile │ ├── index.html │ └── scripts │ │ └── Makefile ├── node-menu.xml ├── node-menu.xml.in ├── node.conf.in └── node.in ├── pub ├── Makefile ├── access_control.xml.in ├── htdocs │ ├── Makefile │ ├── cacert │ │ └── Makefile │ ├── crl │ │ └── Makefile │ ├── images │ │ └── Makefile │ ├── index.html │ └── scripts │ │ └── Makefile ├── pki.in ├── pub-menu.xml ├── pub-menu.xml.in └── pub.conf.in ├── ra ├── Makefile ├── RAServer.in ├── access_control.xml.in ├── htdocs │ ├── Makefile │ ├── images │ │ └── Makefile │ ├── index.html │ └── scripts │ │ └── Makefile ├── ra-menu.xml ├── ra-menu.xml.in └── ra.conf.in └── scep ├── Makefile ├── access_control.xml.in ├── scep.conf.in └── scep.in /INSTALL.UBUNTU: -------------------------------------------------------------------------------- 1 | # Installation details for UBUNTU installation 2 | In ubuntu platforms, in addition to the software listed in the 3 | general INSTALL file, you might need to install the following 4 | pacakges: 5 | o libdb-dev (Berkeley DB devel files) 6 | o libexpat1-dev (Expat XML parsing library devel files) 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/Makefile -------------------------------------------------------------------------------- /Makefile.global-vars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/Makefile.global-vars.in -------------------------------------------------------------------------------- /NOTES.Chain: -------------------------------------------------------------------------------- 1 | Notes about Hierarchies: 2 | ======================= 3 | 4 | If your CA is not the ROOT CA of the hierarchy you have, when verifying 5 | signatures, to use chain verification. To do so, simply put all the CAs' 6 | certificates ( your too ) into the $ca/chain directory. 7 | 8 | Certificates MUST end with the .crt extension, you can use the web 9 | 'CA Initialization' facility to create needed links, or you can do 10 | is by simply do the following: 11 | 12 | $ cd $ca/chain 13 | $ make 14 | 15 | Please note that certificates MUST be PEM formatted and named *.crt, i.e. 16 | 'cacert.crt' or 'snake-oil.crt'. 17 | 18 | 19 | -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/THANKS -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.5.2-1 2 | -------------------------------------------------------------------------------- /build/ltmain.sh: -------------------------------------------------------------------------------- 1 | /usr/share/libtool/config/ltmain.sh -------------------------------------------------------------------------------- /contrib/apache/common.conf.in: -------------------------------------------------------------------------------- 1 | ScriptAlias @node_cgi_url_prefix@ @node_cgi_fs_prefix@ 2 | 3 | Alias @node_htdocs_url_prefix@ @node_htdocs_fs_prefix@ 4 | 5 | 6 | AllowOverride None 7 | Options ExecCGI 8 | Order allow,deny 9 | Allow from all 10 | 11 | 12 | 13 | AllowOverride None 14 | Options +Indexes 15 | Order allow,deny 16 | Allow from all 17 | 18 | -------------------------------------------------------------------------------- /contrib/apache/offline.conf.in: -------------------------------------------------------------------------------- 1 | ScriptAlias @batch_cgi_url_prefix@ @batch_cgi_fs_prefix@ 2 | ScriptAlias @ca_cgi_url_prefix@ @ca_cgi_fs_prefix@ 3 | 4 | Alias @batch_htdocs_url_prefix@ @batch_htdocs_fs_prefix@ 5 | Alias @ca_htdocs_url_prefix@ @ca_htdocs_fs_prefix@ 6 | 7 | -------------------------------------------------------------------------------- /contrib/apache/online.conf.in: -------------------------------------------------------------------------------- 1 | ScriptAlias @ra_cgi_url_prefix@ @ra_cgi_fs_prefix@ 2 | ScriptAlias @pub_cgi_url_prefix@ @pub_cgi_fs_prefix@ 3 | ScriptAlias @ldap_cgi_url_prefix@ @ldap_cgi_fs_prefix@ 4 | ScriptAlias @scep_cgi_url_prefix@ @scep_cgi_fs_prefix@ 5 | 6 | Alias @ra_htdocs_url_prefix@ @ra_htdocs_fs_prefix@ 7 | Alias @pub_htdocs_url_prefix@ @pub_htdocs_fs_prefix@ 8 | Alias @ldap_htdocs_url_prefix@ @ldap_htdocs_fs_prefix@ 9 | 10 | -------------------------------------------------------------------------------- /contrib/build-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/contrib/build-dist.sh -------------------------------------------------------------------------------- /contrib/build-snap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/contrib/build-snap.sh -------------------------------------------------------------------------------- /contrib/install-builder/images/openca_installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/contrib/install-builder/images/openca_installer.png -------------------------------------------------------------------------------- /contrib/install-builder/images/openca_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/contrib/install-builder/images/openca_splash.png -------------------------------------------------------------------------------- /contrib/openldap/generatedb: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | FILE=$1 4 | 5 | if [ "$1" = "" ]; then 6 | FILE='/usr/local/digid/ldap/ldif/callisto_total.ldif' 7 | fi 8 | 9 | /usr/local/digid/ldap/sbin/ldif2ldbm -i $FILE -f /usr/local/digid/ldap/conf/slapd.conf -s /usr/local/digid/ldap/sbin 10 | 11 | exit 0 12 | -------------------------------------------------------------------------------- /contrib/openldap/openca.ldif: -------------------------------------------------------------------------------- 1 | dn: o=OpenCA Organization, c=IT 2 | objectclass: top 3 | objectclass: organization 4 | o: OpenCA Organization 5 | postaladdress: Via Scudari n. 20 (Modena) Italy 6 | postalcode: 41100 7 | telephonenumber: ++39 059 206992 8 | -------------------------------------------------------------------------------- /docs/CHANGES_1.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/docs/CHANGES_1.0.2 -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/docs/Makefile -------------------------------------------------------------------------------- /docs/man3/base.3.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | sample - Using GetOpt::Long and Pod::Usage 4 | 5 | =head1 SYNOPSIS 6 | 7 | sample [options] [file ...] 8 | 9 | Options: 10 | -help brief help message 11 | -man full documentation 12 | 13 | =head1 OPTIONS 14 | 15 | =over 8 16 | 17 | =item B<-help> 18 | 19 | Print a brief help message and exits. 20 | 21 | =item B<-man> 22 | 23 | Prints the manual page and exits. 24 | 25 | =back 26 | 27 | =head1 DESCRIPTION 28 | 29 | B will read the given input file(s) and do something 30 | useful with the contents thereof. 31 | 32 | =cut 33 | -------------------------------------------------------------------------------- /libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/libtool -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- 1 | /usr/share/aclocal/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- 1 | /usr/share/aclocal/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- 1 | /usr/share/aclocal/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- 1 | /usr/share/aclocal/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- 1 | /usr/share/aclocal/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/Makefile -------------------------------------------------------------------------------- /src/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/Makefile -------------------------------------------------------------------------------- /src/common/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/Makefile -------------------------------------------------------------------------------- /src/common/etc/agreements/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/agreements/Makefile -------------------------------------------------------------------------------- /src/common/etc/bp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/bp/Makefile -------------------------------------------------------------------------------- /src/common/etc/bp/functions.txt: -------------------------------------------------------------------------------- 1 | create_pin 2 | check_pin 3 | check_key_params 4 | create_key 5 | check_key 6 | backup_key 7 | check_csr_params 8 | create_csr 9 | complete_csr 10 | check_csr 11 | upload_csr 12 | receive_csr 13 | create_cert 14 | enroll_pin 15 | enroll_pkcs12 16 | postproc_cert 17 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/bp/functions/Makefile -------------------------------------------------------------------------------- /src/common/etc/bp/functions/approve_csr.txt: -------------------------------------------------------------------------------- 1 | checked_csr 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/backup_key.txt: -------------------------------------------------------------------------------- 1 | checked_key 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/check_csr.txt: -------------------------------------------------------------------------------- 1 | complete_csr 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/check_csr_params.txt: -------------------------------------------------------------------------------- 1 | backuped_key 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/check_key.txt: -------------------------------------------------------------------------------- 1 | new_key 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/check_key_params.txt: -------------------------------------------------------------------------------- 1 | checked_pin 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/check_pin.txt: -------------------------------------------------------------------------------- 1 | new_pin 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/complete_csr.txt: -------------------------------------------------------------------------------- 1 | new_csr 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/create_cert.txt: -------------------------------------------------------------------------------- 1 | checked_csr 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/create_csr.txt: -------------------------------------------------------------------------------- 1 | checked_csr_params 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/create_key.txt: -------------------------------------------------------------------------------- 1 | checked_key_params 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/create_pin.txt: -------------------------------------------------------------------------------- 1 | new_process 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/enroll_pin.txt: -------------------------------------------------------------------------------- 1 | new_cert 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/enroll_pkcs12.txt: -------------------------------------------------------------------------------- 1 | enrolled_pin 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/postproc_cert.txt: -------------------------------------------------------------------------------- 1 | enrolled_cert 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/receive_csr.txt: -------------------------------------------------------------------------------- 1 | uploaded_csr 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/functions/upload_csr.txt: -------------------------------------------------------------------------------- 1 | approved_csr 2 | -------------------------------------------------------------------------------- /src/common/etc/bp/states.txt: -------------------------------------------------------------------------------- 1 | new_process 2 | new_pin 3 | checked_pin 4 | checked_key_params 5 | new_key 6 | checked_key 7 | backuped_key 8 | checked_csr_params 9 | new_csr 10 | complete_csr 11 | checked_csr 12 | new_cert 13 | enrolled_pin 14 | enrolled_key 15 | enrolled_pkcs12 16 | valid_cert 17 | uploaded_csr 18 | received_csr 19 | error_create_pin 20 | error_pin_check 21 | manual_check_pin 22 | rejected_pin 23 | incomplete_csr 24 | manual_check_csr 25 | rejected_csr 26 | export_error_csr 27 | issue_error_cert 28 | enroll_error_cert 29 | postproc_error_cert 30 | -------------------------------------------------------------------------------- /src/common/etc/database/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/database/Makefile -------------------------------------------------------------------------------- /src/common/etc/includes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/includes/Makefile -------------------------------------------------------------------------------- /src/common/etc/includes/home_body.inc.ro_RO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/includes/home_body.inc.ro_RO -------------------------------------------------------------------------------- /src/common/etc/openca_stop.template.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | PID_DIR="@var_prefix@/tmp" 4 | FILES="xml_cache.pid openca_socket.pid openca_autoca.pid openca_autocrl.pid openca_autoemail.pid openca_autorevoke.pid" 5 | 6 | echo -n "Stopping OpenCA Daemons ... " 7 | 8 | for pid in $FILES ; do 9 | 10 | pidfile="$PID_DIR/$pid"; 11 | 12 | if [ -f "$pidfile" ] ; then 13 | PID=`cat "$pidfile" 2>/dev/null` 14 | if [ -n "$PID" ] ; then 15 | # kill $PID 2>/dev/null >/dev/null 16 | kill $PID 2>/dev/null >/dev/null 17 | rm -f $pidfile 18 | fi 19 | fi 20 | done 21 | 22 | echo Done. 23 | 24 | exit 0 25 | 26 | -------------------------------------------------------------------------------- /src/common/etc/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/openssl/Makefile -------------------------------------------------------------------------------- /src/common/etc/openssl/extfiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/openssl/extfiles/Makefile -------------------------------------------------------------------------------- /src/common/etc/openssl/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/openssl/openssl/Makefile -------------------------------------------------------------------------------- /src/common/etc/rbac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/rbac/Makefile -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/etc/rbac/cmds/Makefile -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/addCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | addCRR 5 | crr new 6 | CERTIFICATE_SERIAL 7 | serial 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/add_module.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | add_module 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/add_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | add_right 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/add_role.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | add_role 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/add_script.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | add_script 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/advanced_csr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | advanced_csr 5 | csr new adv 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/approveCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | approveCRR 5 | crr approve 6 | CRR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/approveCRRnotSigned.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | approveCRRnotSigned 5 | crr approve without signature 6 | CRR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/approveCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | approveCSR 5 | csr approve 6 | CSR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/approveCSRnotSigned.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | approveCSRnotSigned 5 | csr approve without signature 6 | CSR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/authenticated_csr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | authenticated_csr 5 | csr new auth 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/basic_csr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | basic_csr 5 | csr new 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpDeletePIN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpDeletePIN 5 | batchprocessor delete pin 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpDoFunction.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpDoFunction 5 | statemachine use 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpDoStep.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpDoStep 5 | statemachine use 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpExportPIN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpExportPIN 5 | batchprocessor export pins 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpImportNewProcess.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpImportNewProcess 5 | batchprocessor import new processes 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpImportNewUser.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpImportNewUser 5 | batchprocessor import new users 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpImportProcessData.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpImportProcessData 5 | batchprocessor import process data 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpImportProcessDataCompact.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpImportProcessDataCompact 5 | batchprocessor import new data in compact form 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpImportUpdateUser.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpImportUpdateUser 5 | batchprocessor import update of user data 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpIssueCertificate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpIssueCertificate 5 | batchprocessor issue certificate 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpListProcess.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpListProcess 5 | batchprocessor list users 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpListUser.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpListUser 5 | batchprocessor list users 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpRecoverCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpRecoverCert 5 | batchprocessor recover key 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpRecoverKey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpRecoverKey 5 | batchprocessor recover key 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpRevokeCertificate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpRevokeCertificate 5 | batchprocessor revoke certificate 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpSetState.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpSetState 5 | batchprocessor state configuration 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpUnsetState.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpUnsetState 5 | batchprocessor state configuration 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/bpViewProcess.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bpViewProcess 5 | batchprocessor view user 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/changeCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | changeCRR 5 | crr edit 6 | CRR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/changeCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | changeCSR 5 | csr edit 6 | CSR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/changePasswd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | changePasswd 5 | certificate change passphrase of key 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/cleanupSessions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | cleanupSessions 5 | Cleanup Sessions 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/confirm_revreq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | confirm_revreq 5 | crr new 6 | CERTIFICATE_SERIAL 7 | serial 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/crlList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | crlList 5 | crl list 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/deleteCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | deleteCRR 5 | crr delete 6 | CRR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/deleteCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | deleteCSR 5 | csr delete 6 | CSR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/deleteListCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | deleteListCSR 5 | list of csr delete 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/deletePasswd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | deletePasswd 5 | passphrase handling for objects 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/delete_module.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | delete_module 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/delete_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | delete_right 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/delete_script.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | delete_script 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/editCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | editCRR 5 | crr edit 6 | CRR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/editCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | editCSR 5 | csr edit 6 | CSR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/exportCAReqCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | exportCAReqCert 5 | initialization of ca-request 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/exportDB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | exportDB 5 | backup 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/genCACert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | genCACert 5 | initialization of ca-certificate 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/genCAReq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | genCAReq 5 | initialization of ca-request 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/genCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | genCRL 5 | crl generation 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/genCRLfromFile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | genCRLfromFile 5 | crl generation from file 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/genDB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | genDB 5 | initialization of database 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/genMenu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | genMenu 5 | menu generation 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/genSKey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | genSKey 5 | initialization of ca-key 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/getMenu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | getMenu 5 | menu retrieve 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/getParams.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | getParams 5 | parameters_get 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/getStaticPage.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | getStaticPage 5 | module information 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/getcacert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | getcacert 5 | ca certificate send 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/getcert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | getcert 5 | certificate send 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/hsmLogin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | hsmLogin 5 | hsm login 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/hsmLogout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | hsmLogout 5 | hsm logout 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/importCACert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | importCACert 5 | initialization of ca-certificate 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/importDB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | importDB 5 | recovery 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/issueCertificate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | issueCertificate 5 | certificate issue 6 | CSR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapAddCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapAddCRL 5 | crl to ldap 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapAddCRLbyName.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapAddCRLbyName 5 | crl to ldap with changed dn 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapAddCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapAddCert 5 | certificate to ldap 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapAddCertByName.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapAddCertByName 5 | certificate to ldap with changed dn 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapAddCerts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapAddCerts 5 | certificates to ldap 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapCreateCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapCreateCSR 5 | csr new 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapDeleteCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapDeleteCert 5 | certificate delete from ldap 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapDeleteCertByName.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapDeleteCertByName 5 | certificate delete from ldap 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapImportCerts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapImportCerts 5 | certificates updates ldap 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapUpdate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapUpdate.xml 5 | all ldap update 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapUpdateCA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapUpdateCA 5 | ca-cert update ldap 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapUpdateCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapUpdateCRL 5 | crl update ldap 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/ldapUpdateCerts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ldapUpdateCerts 5 | certificates updates ldap 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/listCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | listCRR 5 | CRR list 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/listCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | listCSR 5 | CSR list 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/listCerts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | listCerts 5 | certificate list 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/lists.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | lists 5 | all list 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/logRecovery.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | logRecovery 5 | recover log 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/newUser.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | newUser 5 | add user 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/new_module.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | new_module 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/new_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | new_right 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/new_role.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | new_role 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/new_script.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | new_script 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/new_user.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | newUser 5 | add user 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeDownloadAll.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeDownloadAll 5 | node download all 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeDownloadBP.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeDownloadBP 5 | node download batchprocessors 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeDownloadCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeDownloadCRL 5 | node download crl 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeDownloadCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeDownloadCert 5 | node download cert 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeDownloadConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeDownloadConfig 5 | node download configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeEnrollAll.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeEnrollAll 5 | node enroll all 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeEnrollBP.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeEnrollBP 5 | node enroll batchprocessors 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeEnrollCACert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeEnrollCACert 5 | node enroll ca-certificate 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeEnrollCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeEnrollCRL 5 | node enroll crl 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeEnrollCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeEnrollCert 5 | node enroll cert 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeEnrollConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeEnrollConfig 5 | node enroll configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeReceiveAll.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeReceiveAll 5 | node receive all 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeReceiveCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeReceiveCRR 5 | node receive crr 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeReceiveCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeReceiveCSR 5 | node receive csr 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeUploadAll.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeUploadAll 5 | node upload all 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeUploadCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeUploadCRR 5 | node upload crr 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/nodeUploadCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nodeUploadCSR 5 | node upload csr 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/pkcs10_req.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | pkcs10_req 5 | csr new 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/raList.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | raList 5 | CSR list 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/rebuildChain.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | rebuildChain 5 | module initialization 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/rebuildOpenSSLindexDB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | rebuildOpenSSLindexDB 5 | recovery 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/removeFiles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | removeFiles 5 | recovery 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/removeItem.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | removeItem 5 | object remove 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/removeKey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | removeKey 5 | certificate remove key 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/renewCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | renewCSR 5 | csr renew 6 | CSR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/replayLog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | replayLog 5 | recovery 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/revokeCertificate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | revokeCertificate 5 | certificate revoke 6 | CRR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/revoke_req.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | revoke_req 5 | crr new 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/scepGetCACert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | scepGetCACert 5 | ca-cert send 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/scepPKIOperation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | scepPKIOperation 5 | scep operation 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/search.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | search 5 | all search 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/searchCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | searchCert 5 | certificate view 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/search_rights.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | search_rights 5 | access control show configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/sendCRINMail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | sendCRINMail 5 | mail send 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/sendMail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | sendMail 5 | mail send 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/send_cert_key.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | send_cert_key 5 | certficate send with key 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/send_cert_key_openssl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | send_cert_key_openssl 5 | certficate send with key 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/send_cert_key_pkcs12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | send_cert_key_pkcs12 5 | certficate send with key 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/send_cert_key_pkcs8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | send_cert_key_pkcs8 5 | certficate send with key 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/send_email_cert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | send_email_cert 5 | certificate send 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/sendcert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | sendcert 5 | ca-cert send 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/serverInfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | serverInfo 5 | module information 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/setLanguage.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | setLanguage 5 | set language 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/setPasswd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | setPasswd 5 | passphrase handling for objects 6 | CERTIFICATE_SERIAL 7 | HIDDEN_key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/setupInitialCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | setupInitialCert 5 | initialization first certificates 6 | ANY 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_modules 5 | access control show configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_prepared_module.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_prepared_module 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_prepared_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_prepared_right 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_prepared_role.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_prepared_role 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_prepared_script.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_prepared_script 5 | access control configure 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_rights.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_rights 5 | access control show configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_roles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_roles 5 | access control show configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_script.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_script 5 | access control show configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/show_scripts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | show_scripts 5 | access control show configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/signConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | signConfig 5 | access control sign configuration 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/startAutoCA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | startAutoCA 5 | start OnLine CA component 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/startAutoCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | startAutoCRL 5 | start OnLine CRL component 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/startAutoEmail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | startAutoEmail 5 | start OnLine Email component 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/startAutoRevoke.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | startAutoRevoke 5 | start OnLine Revokation 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/stats.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | stats 5 | generates CA stats 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/statusAutoCA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | statusAutoCA 5 | status OnLine CA 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/statusAutoCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | statusAutoCRL 5 | status OnLine CRL 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/statusAutoEmail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | statusAutoEmail 5 | status OnLine Email 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/statusAutoRevoke.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | statusAutoRevoke 5 | status OnLine Revokation 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/stopAutoCA.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | stopAutoCA 5 | stop OnLine CA component 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/stopAutoCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | stopAutoCRL 5 | stop OnLine CRL component 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/stopAutoEmail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | stopAutoEmail 5 | stop OnLine Email component 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/stopAutoRevoke.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | stopAutoRevoke 5 | stop OnLine Revokation 6 | CGI 7 | role 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/stopDaemon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | stopDaemon 5 | stop daemons of crypto tokens 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/submit_revreq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | submit_revreq 5 | crr new 6 | CERTIFICATE_SERIAL 7 | serial 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/test_cert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | test_cert 5 | certificate test 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/updateOCSPindexDB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | updateOCSPindexDB 5 | ocsp database update 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/updateSearchAttributes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | updateSearchAttributes 5 | database update 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/upgradeDB.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | upgradeDB 5 | upgrade database 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/verifyEmail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | verifyEmail 5 | verify email 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/verifyPIN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | verifyPIN 5 | manual PIN check 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/verifySignature.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | verifySignature 5 | signature verify 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/viewCRL.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | viewCRL 5 | crl view 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/viewCRR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | viewCRR 5 | crr view 6 | CRR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/viewCSR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | viewCSR 5 | csr view 6 | CSR_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/viewCert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | viewCert 5 | certificate view 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/viewCertFull.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | viewCertFull 5 | certificate full view 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/viewLoas.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | viewLoas 5 | LOA view 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/viewLog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | viewLog 5 | log view 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/viewSignature.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | viewSignature 5 | signature view 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/warnExpiring.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | warnExpiring 5 | certificate expiration warning 6 | any 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/cmds/writeCertMail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | writeCertMail 5 | certificate mail 6 | CERTIFICATE_SERIAL 7 | key 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/common/etc/rbac/roles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | User 5 | VPN User 6 | IGTF SLCS 7 | IGTF MICS 8 | OCSP Server 9 | PRQP Server 10 | Web Server 11 | Mail Server 12 | VPN Server 13 | Domain Controller 14 | Cross CA 15 | Sub-CA 16 | CA Operator 17 | RA Operator 18 | Self Signed CA 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/common/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/Makefile -------------------------------------------------------------------------------- /src/common/lib/cmds/cleanupSessions: -------------------------------------------------------------------------------- 1 | ## OpenCA - CA Command 2 | ## (c) 1998-2003 The OpenCA Project 3 | ## 4 | ## File Name: cleanupSessions 5 | ## Version: $Revision: 1.1.1.1 $ 6 | ## Brief: cleanup sessions 7 | ## Description: remove all expired sessions from session directory 8 | 9 | use strict; 10 | 11 | sub cmdCleanupSessions { 12 | 13 | our $access_control; 14 | 15 | print startLogPage ( gettext("Removing expired Sessions ...") ); 16 | 17 | print addLogSection ( gettext("Expired and removed session ...")); 18 | 19 | print addLogLine ($access_control->cleanupSessions); 20 | 21 | print closeLogSection(); 22 | 23 | closePage (); 24 | 25 | } 26 | 27 | 1; 28 | 29 | -------------------------------------------------------------------------------- /src/common/lib/cmds/exportDB: -------------------------------------------------------------------------------- 1 | ## OpenCA - CA Command 2 | ## (c) Copyright 1998-2004 The OpenCA Project 3 | ## 4 | ## File Name: exportDB 5 | ## Version: $Revision: 1.1.1.1 $ 6 | ## Brief: Exports DB 7 | ## Description: Exports on a removable media all 8 | 9 | use strict; 10 | 11 | sub cmdExportDB { 12 | 13 | print startLogPage ( gettext("Exporting DB ...") ); 14 | 15 | exportDB (); 16 | 17 | closePage (); 18 | 19 | } 20 | 21 | 1; 22 | 23 | -------------------------------------------------------------------------------- /src/common/lib/cmds/importDB: -------------------------------------------------------------------------------- 1 | ## OpenCA - CA Command 2 | ## (c) Copyright 1998-2004 The OpenCA Project 3 | ## 4 | ## File Name: importDB 5 | ## Version: $Revision: 1.1.1.1 $ 6 | ## Brief: imports DB 7 | ## Description: imports from a removable media 8 | 9 | use strict; 10 | 11 | sub cmdImportDB { 12 | 13 | print startLogPage ( gettext("Importing Database ...") ); 14 | 15 | importDB (); 16 | 17 | print closePage (); 18 | 19 | return 1; 20 | } 21 | 22 | 1; 23 | -------------------------------------------------------------------------------- /src/common/lib/cmds/ldapUpdate: -------------------------------------------------------------------------------- 1 | ## OpenCA - command 2 | ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group 3 | ## (c) Copyright 2002-2004 The OpenCA Project 4 | ## 5 | ## File Name: ldapUpdate 6 | ## Brief: Updates LDAP server 7 | ## Description: Add issued certificates to LDAP server 8 | ## Parameters: 9 | 10 | use strict; 11 | 12 | our ($tmpdir); 13 | 14 | sub cmdLdapUpdate { 15 | 16 | print startLogPage( gettext("LDAP Updating") ); 17 | print addLogSection( gettext("Adding Certificates ... ")); 18 | 19 | if( (LDAP_addCertsUsers( $tmpdir ) ) == -1 ) { 20 | print addLogLine(gettext("Failed!")) ; 21 | } 22 | 23 | print closeLogSection(); 24 | closePage(); 25 | } 26 | 27 | 1; 28 | 29 | -------------------------------------------------------------------------------- /src/common/lib/cmds/nodeEnrollCACert: -------------------------------------------------------------------------------- 1 | ## OpenCA - CA Command 2 | ## Written by Michael Bell for the OpenCA project 2001 3 | ## (c) Copyright 2001-2004 The OpenCA Project 4 | ## 5 | ## File Name: nodeEnrollCACert 6 | ## Version: $Revision: 1.1.1.1 $ 7 | ## Brief: exports certificates 8 | ## Description: exports to a removable media 9 | 10 | use strict; 11 | 12 | sub cmdNodeEnrollCACert { 13 | 14 | print startLogPage ( gettext ("Exporting all CA-certificates to a lower level of the hierarchy ...") ); 15 | 16 | my $tmp = createStructure (); 17 | eximEnrollCAs ( $tmp ); 18 | eximEnrollCommit ( $tmp ); 19 | eximIOEnroll ( $tmp ); 20 | removeDirectory ( $tmp ); 21 | 22 | closePage (); 23 | 24 | } 25 | 26 | sub getParamsNodeEnrollCACert 27 | { 28 | return eximMediaConfirm (@_); 29 | } 30 | 31 | 1; 32 | -------------------------------------------------------------------------------- /src/common/lib/cmds/nodeEnrollCRL: -------------------------------------------------------------------------------- 1 | ## OpenCA - Command 2 | ## Written by Michael Bell for the OpenCA project 2001 3 | ## (c) Copyright 2001-2004 The OpenCA Project 4 | ## 5 | ## File Name: nodeEnrollCRL 6 | ## Version: $Revision: 1.1.1.1 $ 7 | ## Brief: exports CRLs 8 | ## Description: exports to a removable media 9 | 10 | use strict; 11 | 12 | sub cmdNodeEnrollCRL { 13 | 14 | print startLogPage ( gettext("Exporting all CRLs to a lower level of the hierarchy ...") ); 15 | 16 | my $tmp = createStructure (); 17 | eximEnrollCRLs ( $tmp ); 18 | eximEnrollCommit ( $tmp ); 19 | eximIOEnroll ( $tmp ); 20 | removeDirectory ( $tmp ); 21 | 22 | closePage (); 23 | 24 | } 25 | 26 | sub getParamsNodeEnrollCRL 27 | { 28 | return eximMediaConfirm (@_); 29 | } 30 | 31 | 1; 32 | -------------------------------------------------------------------------------- /src/common/lib/cmds/nodeUploadCRR: -------------------------------------------------------------------------------- 1 | ## OpenCA - CA Command 2 | ## Written by Michael Bell for the OpenCA project 2001 3 | ## (c) Copyright 2001-2004 The OpenCA Project 4 | ## 5 | ## File Name: nodeUploadCRR 6 | ## Version: $Revision: 1.1.1.1 $ 7 | ## Brief: export CRRs 8 | ## Description: exports the CRRs to a removable media 9 | 10 | use strict; 11 | 12 | sub cmdNodeUploadCRR { 13 | 14 | print startLogPage ( gettext ("Exporting the CRRs to a higher level of the hierarchy ...") ); 15 | 16 | my $tmp = createStructure (); 17 | eximUploadCRRs ( $tmp ); 18 | eximUploadCommit ( $tmp ); 19 | eximIOUpload ( $tmp ); 20 | removeDirectory ( $tmp ); 21 | 22 | closePage (); 23 | 24 | } 25 | 26 | sub getParamsNodeUploadCRR 27 | { 28 | return eximMediaConfirm (@_); 29 | } 30 | 31 | 1; 32 | -------------------------------------------------------------------------------- /src/common/lib/cmds/nodeUploadCSR: -------------------------------------------------------------------------------- 1 | ## OpenCA - CA Command 2 | ## Written by Michael Bell for the OpenCA project 2001 3 | ## (c) Copyright 2001-2004 The OpenCA Project 4 | ## 5 | ## File Name: nodeUploadCSR 6 | ## Version: $Revision: 1.1.1.1 $ 7 | ## Brief: export requests 8 | ## Description: exports the requests to a removable media 9 | 10 | use strict; 11 | 12 | sub cmdNodeUploadCSR { 13 | 14 | print startLogPage ( gettext("Exporting the requests to a higher level of the hierarchy ...") ); 15 | 16 | my $tmp = createStructure (); 17 | eximUploadCSRs ( $tmp ); 18 | eximUploadCommit ( $tmp ); 19 | eximIOUpload ( $tmp ); 20 | removeDirectory ( $tmp ); 21 | 22 | closePage (); 23 | 24 | } 25 | 26 | sub getParamsNodeUploadCSR 27 | { 28 | return eximMediaConfirm (@_); 29 | } 30 | 31 | 1; 32 | -------------------------------------------------------------------------------- /src/common/lib/functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/functions/Makefile -------------------------------------------------------------------------------- /src/common/lib/functions/initDBI: -------------------------------------------------------------------------------- 1 | 2 | use OpenCA::DBI; 3 | 4 | sub initDBI 5 | { 6 | our ($db, $versions, $errno, $errval); 7 | setPerformancePoint ("use OpenCA::DBI"); 8 | 9 | ## Generate a new DB object 10 | $db = newConnectDB(); 11 | 12 | if ((not defined($db)) or ($db eq "")) 13 | { 14 | configError( i18nGettext ( 15 | "Cannot initialize OpenCA::DBI class! The database returns errorcode __ERRNO__. (__ERRVAL__)", 16 | "__ERRNO__", $OpenCA::DBI::errno, 17 | "__ERRVAL__", $OpenCA::DBI::errval)); 18 | } 19 | 20 | setPerformancePoint ("database object instantiated"); 21 | 22 | $versions->{DB} = OpenCA::DBI->VERSION; 23 | } 24 | 25 | setPerformancePoint ("loaded initDBI"); 26 | 27 | ## Call the real function 28 | initDBI(); 29 | 30 | 1; 31 | -------------------------------------------------------------------------------- /src/common/lib/functions/initRBAC: -------------------------------------------------------------------------------- 1 | ## Uses the OpenCA::RBAC module 2 | 3 | ## load rbac-utils.lib 4 | require "rbac-utils.lib"; 5 | 6 | 1; 7 | 8 | -------------------------------------------------------------------------------- /src/common/lib/functions/log-utils.lib: -------------------------------------------------------------------------------- 1 | ## Log Utilities. 2 | ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group 3 | ## Open Source Released Software 4 | 5 | ## only for testing the library 6 | #use strict; 7 | 8 | sub startLogPage { 9 | return $ui_html->startLogPage (@_); 10 | } 11 | 12 | sub closeLogPage { 13 | return $ui_html->closeLogPage (@_); 14 | } 15 | 16 | sub addLogSection { 17 | return $ui_html->addLogSection (@_); 18 | } 19 | 20 | sub closeLogSection { 21 | return $ui_html->closeLogSection (@_); 22 | } 23 | 24 | sub addErrorLog { 25 | return $ui_html->addErrorLog (@_); 26 | } 27 | 28 | sub addLogLine { 29 | return $ui_html->addLogLine (@_); 30 | } 31 | 32 | sub addPreLogLine { 33 | return $ui_html->addPreLogLine (@_); 34 | } 35 | 36 | 1; 37 | -------------------------------------------------------------------------------- /src/common/lib/images/back_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/back_item.png -------------------------------------------------------------------------------- /src/common/lib/images/big_openca_logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/big_openca_logo2.jpg -------------------------------------------------------------------------------- /src/common/lib/images/bottom_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/bottom_back.png -------------------------------------------------------------------------------- /src/common/lib/images/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/bulb.png -------------------------------------------------------------------------------- /src/common/lib/images/cert-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/cert-icon.png -------------------------------------------------------------------------------- /src/common/lib/images/certicon_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/certicon_med.png -------------------------------------------------------------------------------- /src/common/lib/images/certicon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/certicon_small.png -------------------------------------------------------------------------------- /src/common/lib/images/certicon_small_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/certicon_small_off.png -------------------------------------------------------------------------------- /src/common/lib/images/config-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/config-icon.png -------------------------------------------------------------------------------- /src/common/lib/images/digid_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/digid_logo.gif -------------------------------------------------------------------------------- /src/common/lib/images/digid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/digid_logo.png -------------------------------------------------------------------------------- /src/common/lib/images/email_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/email_link.png -------------------------------------------------------------------------------- /src/common/lib/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/home.png -------------------------------------------------------------------------------- /src/common/lib/images/home_back_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/home_back_1.png -------------------------------------------------------------------------------- /src/common/lib/images/home_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/home_off.png -------------------------------------------------------------------------------- /src/common/lib/images/info-big-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/info-big-2.png -------------------------------------------------------------------------------- /src/common/lib/images/info-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/info-big.png -------------------------------------------------------------------------------- /src/common/lib/images/info-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/info-key.png -------------------------------------------------------------------------------- /src/common/lib/images/info-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/info-new.png -------------------------------------------------------------------------------- /src/common/lib/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/info.gif -------------------------------------------------------------------------------- /src/common/lib/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/info.png -------------------------------------------------------------------------------- /src/common/lib/images/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/install.png -------------------------------------------------------------------------------- /src/common/lib/images/left_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/left_off.gif -------------------------------------------------------------------------------- /src/common/lib/images/left_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/left_off.png -------------------------------------------------------------------------------- /src/common/lib/images/left_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/left_on.png -------------------------------------------------------------------------------- /src/common/lib/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/logout.png -------------------------------------------------------------------------------- /src/common/lib/images/logout_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/logout_off.png -------------------------------------------------------------------------------- /src/common/lib/images/menu_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/menu_center.png -------------------------------------------------------------------------------- /src/common/lib/images/menu_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/menu_left.gif -------------------------------------------------------------------------------- /src/common/lib/images/menu_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/menu_left.png -------------------------------------------------------------------------------- /src/common/lib/images/menu_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/menu_right.gif -------------------------------------------------------------------------------- /src/common/lib/images/menu_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/menu_right.png -------------------------------------------------------------------------------- /src/common/lib/images/message_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/message_new.png -------------------------------------------------------------------------------- /src/common/lib/images/message_new_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/message_new_off.png -------------------------------------------------------------------------------- /src/common/lib/images/notSigned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/notSigned.png -------------------------------------------------------------------------------- /src/common/lib/images/notice_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/notice_new.png -------------------------------------------------------------------------------- /src/common/lib/images/notice_new_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/notice_new_off.png -------------------------------------------------------------------------------- /src/common/lib/images/openca-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/openca-logo.png -------------------------------------------------------------------------------- /src/common/lib/images/openca_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/openca_logo.jpg -------------------------------------------------------------------------------- /src/common/lib/images/openca_logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/openca_logo2.jpg -------------------------------------------------------------------------------- /src/common/lib/images/openca_main_back_big_col_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/openca_main_back_big_col_logo.png -------------------------------------------------------------------------------- /src/common/lib/images/openca_main_back_col_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/openca_main_back_col_1.png -------------------------------------------------------------------------------- /src/common/lib/images/openca_main_back_col_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/openca_main_back_col_2.png -------------------------------------------------------------------------------- /src/common/lib/images/panel_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/panel_back.png -------------------------------------------------------------------------------- /src/common/lib/images/print_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/print_link.png -------------------------------------------------------------------------------- /src/common/lib/images/profileicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/profileicon.png -------------------------------------------------------------------------------- /src/common/lib/images/profileicon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/profileicon_off.png -------------------------------------------------------------------------------- /src/common/lib/images/right_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/right_off.gif -------------------------------------------------------------------------------- /src/common/lib/images/right_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/right_off.png -------------------------------------------------------------------------------- /src/common/lib/images/right_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/right_on.png -------------------------------------------------------------------------------- /src/common/lib/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/search.png -------------------------------------------------------------------------------- /src/common/lib/images/sigError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/sigError.png -------------------------------------------------------------------------------- /src/common/lib/images/step_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/step_1.png -------------------------------------------------------------------------------- /src/common/lib/images/step_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/step_2.png -------------------------------------------------------------------------------- /src/common/lib/images/step_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/step_3.png -------------------------------------------------------------------------------- /src/common/lib/images/top_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/top_back.png -------------------------------------------------------------------------------- /src/common/lib/images/top_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/top_logo.png -------------------------------------------------------------------------------- /src/common/lib/images/validSig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/images/validSig.png -------------------------------------------------------------------------------- /src/common/lib/javascript/ja_JP/ieEnroll.js: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /src/common/lib/locale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/Makefile -------------------------------------------------------------------------------- /src/common/lib/locale/de_DE/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/de_DE/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/el_GR/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/el_GR/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/en_GB/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/en_GB/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/es_ES/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/es_ES/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/files/bp.list: -------------------------------------------------------------------------------- 1 | common/lib/bp/backup_key.sub 2 | common/lib/bp/check_csr_params.sub 3 | common/lib/bp/check_csr.sub 4 | common/lib/bp/check_key_params.sub 5 | common/lib/bp/check_key.sub 6 | common/lib/bp/check_pin.sub 7 | common/lib/bp/complete_csr.sub 8 | common/lib/bp/create_cert.sub 9 | common/lib/bp/create_csr.sub 10 | common/lib/bp/create_key.sub 11 | common/lib/bp/create_pin.sub 12 | common/lib/bp/enroll_pin.sub 13 | common/lib/bp/enroll_pkcs12.sub 14 | -------------------------------------------------------------------------------- /src/common/lib/locale/files/functions.list: -------------------------------------------------------------------------------- 1 | common/lib/functions/crypto-utils.lib 2 | common/lib/functions/datasource-utils.lib 3 | common/lib/functions/export-import.lib 4 | common/lib/functions/ldap-utils.lib 5 | common/lib/functions/log-utils.lib 6 | common/lib/functions/mail-utils.lib 7 | common/lib/functions/misc-utils.lib 8 | common/lib/functions/rbac-utils.lib 9 | common/lib/functions/request-utils.lib 10 | common/lib/functions/initCGI 11 | common/lib/functions/initDB 12 | common/lib/functions/initDBI 13 | common/lib/functions/initLDAP 14 | common/lib/functions/initRBAC 15 | common/lib/functions/initServer 16 | -------------------------------------------------------------------------------- /src/common/lib/locale/files/menu.list: -------------------------------------------------------------------------------- 1 | web-interfaces/batch/batch-menu.xml.in 2 | web-interfaces/ca/ca-menu.xml.in 3 | web-interfaces/ldap/ldap-menu.xml.in 4 | web-interfaces/node/node-menu.xml.in 5 | web-interfaces/pub/pub-menu.xml.in 6 | web-interfaces/ra/ra-menu.xml.in 7 | -------------------------------------------------------------------------------- /src/common/lib/locale/files/order_files.pl: -------------------------------------------------------------------------------- 1 | #!/bin/perl 2 | 3 | my $filename = $ARGV[0]; 4 | my $file = ""; 5 | open FD, $filename or die "Cannot open file $filename\n"; 6 | while () 7 | { 8 | $file .= $_; 9 | } 10 | close FD; 11 | 12 | my @lines = split /\n/, $file; 13 | @lines = sort @lines; 14 | $file = join "\n", @lines; 15 | 16 | print $file."\n"; 17 | -------------------------------------------------------------------------------- /src/common/lib/locale/fr_FR/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/fr_FR/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/it_IT/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/it_IT/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/ja_JP/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/ja_JP/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/pl_PL/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/pl_PL/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/pot/exclude_bp.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/pot/exclude_bp.pot -------------------------------------------------------------------------------- /src/common/lib/locale/pot/exclude_functions.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/pot/exclude_functions.pot -------------------------------------------------------------------------------- /src/common/lib/locale/pot/exclude_menu.pot: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | -------------------------------------------------------------------------------- /src/common/lib/locale/pot/exclude_modules.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/pot/exclude_modules.pot -------------------------------------------------------------------------------- /src/common/lib/locale/pot/remove_revision.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | my $filename = $ARGV[0]; 4 | 5 | open FD, $filename or die ("Cannot open $filename."); 6 | my $file = ""; 7 | while () 8 | { 9 | $file .= $_; 10 | } 11 | close FD; 12 | 13 | ## -----START REGEX----- 14 | ## (\n\#[^\n]*) --> new line is comment until end of line 15 | ## \nmsgid[\s]+"\$Revision:[^\n]\n --> msgid is a Revision from CVS 16 | ## msgstr[\s]+""\n --> empty msgstr 17 | ## -----END REGEX----- 18 | 19 | ## #: modules/openca-openssl/OpenSSL.pm:108 20 | ## msgid "$Revision: 1.1.1.1 $" 21 | ## msgstr "" 22 | 23 | 24 | $file =~ s/(\n\#[^\n]*)*\nmsgid[\s]+"\$Revision:[^\n]*\nmsgstr[\s]+""\n//sg; 25 | 26 | print $file; 27 | 28 | 1; 29 | -------------------------------------------------------------------------------- /src/common/lib/locale/pt_PT/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/pt_PT/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/ru_RU/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/ru_RU/openca.mo -------------------------------------------------------------------------------- /src/common/lib/locale/sl_SI/openca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/locale/sl_SI/openca.mo -------------------------------------------------------------------------------- /src/common/lib/mails/C/expiringMail.msg: -------------------------------------------------------------------------------- 1 | Dear Owner of Certificate __CERT_SERIAL__, 2 | 3 | The certificate with the serial __CERT_SERIAL__ and the subject 4 | __CERT_SUBJECT__ will expire at __CERT_NOTAFTER__. 5 | The certificate was issued for __CERT_CN__. 6 | 7 | Please visit our webpage to request a new certificate or 8 | contact your registration authority to renew the certificate. 9 | You can simply reply to this email for further information. 10 | 11 | @httpd_protocol@://@httpd_host@@httpd_port@ 12 | 13 | Please remember that the services for which the certificate 14 | is used will probably no longer be usable once the certificate 15 | expires. 16 | 17 | Sincerely Yours, 18 | @ca_organization@ Security Staff. 19 | -------------------------------------------------------------------------------- /src/common/lib/mails/C/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Dear Customer, 2 | 3 | Your certificate with the serial number @__SERIAL__@ and the DN @__DN__@ has been 4 | generated. You can download it now. 5 | 6 | Please use the PIN you entered during the generation of 7 | the request to revoke the certificate. 8 | 9 | Sincerely, your administration team 10 | -------------------------------------------------------------------------------- /src/common/lib/mails/C/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Dear Customer, 2 | 3 | Your certificate with the serial number @__SERIAL__@ and the DN @__DN__@ has been 4 | generated. You can download it now. 5 | 6 | Please use the following PIN to revoke your certificate: 7 | 8 | $PIN 9 | 10 | Sincerely, your adminstration team 11 | -------------------------------------------------------------------------------- /src/common/lib/mails/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/mails/Makefile -------------------------------------------------------------------------------- /src/common/lib/mails/de_DE/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Sehr geehrte Nutzerin, sehr geehrter Nutzer, 2 | 3 | Ihr Zertifikat mit der Seriennummer @__SERIAL__@ und dem Namen @__DN__@ 4 | ist erstellt worden. Sie können es nun herunterladen. 5 | 6 | Bitte benutzen Sie die PIN, welche Sie bei der Erstellung des Zertifizierungsantrages 7 | eingegeben haben, um Ihr Zertifikat zurückzurufen, wenn es zu einer Kompromittierung 8 | gekommen ist. 9 | 10 | 11 | Mit freundlichen Grüßen 12 | 13 | Ihr PKI-Team 14 | -------------------------------------------------------------------------------- /src/common/lib/mails/de_DE/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Sehr geehrte Nutzerin, sehr geehrter Nutzer, 2 | 3 | Ihr Zertifikat mit der Seriennummer @__SERIAL__@ und dem Namen @__DN__@ 4 | ist erstellt worden. Sie können es nun herunterladen. 5 | 6 | Bitte benutzen Sie die folgende PIN, um Ihr Zertifikat zurückzurufen, 7 | wenn es zu einer Kompromittierung gekommen ist: 8 | 9 | $PIN 10 | 11 | 12 | Mit freundlichen Grüßen 13 | 14 | Ihr PKI-Team 15 | -------------------------------------------------------------------------------- /src/common/lib/mails/el_GR/expiringMail.msg: -------------------------------------------------------------------------------- 1 | Αγαπητέ κάτοχε του πιστοποιητικού με Α/Α __CERT_SERIAL__, 2 | 3 | το πιστοποιητικό με Α/Α __CERT_SERIAL__ και subject 4 | __CERT_SUBJECT__ έχει ημερομηνία λήξης __CERT_NOTAFTER__. 5 | Το πιστοποιητικό εκδόθηκε για __CERT_CN__. 6 | 7 | Παρακαλούμε επισκεφτείτε την ιστοσελίδα μας για να κάνετε μία νέα αίτηση πιστοποιητικού 8 | ή επικοινωνήστε με την Αρχή Καταχώρησης για ανανέωση του πιστοποιητικού σας. 9 | 10 | 11 | @httpd_protocol@://@httpd_host@@httpd_port@ 12 | 13 | Παρακαλούμε θυμηθείτε ότι οι υπηρεσίες που χρησιμοποιούν το πιστοποιητικό σας δεν θα είναι πλέον προσβάσιμες μετά την λήξη του. 14 | 15 | Ευχαριστούμε πολύ, 16 | Υπηρεσία Αρχής Πιστοποίησης @ca_organization@ . 17 | -------------------------------------------------------------------------------- /src/common/lib/mails/el_GR/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Αγαπητέ χρήστη της υπηρεσίας, 2 | 3 | το πιστοποιητικό σας με Α/Α @__SERIAL__@ και Διακεκριμένο Όνομα (DN) @__DN__@ δημιουργήθηκε με επιτυχία και μπορείτε 4 | να το κατεβάσετε. 5 | 6 | Παρακαλούμε χρησιμοποιήστε το PIN που χρησιμοποιήσατε κατα την δημιουργία του πιστοποιητικού για να 7 | ανακαλέσετε το πιστοποιητικό. 8 | 9 | Ευχαριστούμε πολύ, 10 | Υπηρεσία Αρχής Πιστοποίησης. -------------------------------------------------------------------------------- /src/common/lib/mails/el_GR/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Αγαπητέ χρήστη, 2 | το πιστοποιητικό σας με Α/Α @__SERIAL__@ και Διακεκριμένο Όνομα (DN) @__DN__@ δημιουργήθηκε με επιτυχία και μπορείτε 3 | να το κατεβάσετε. 4 | Προκειμένου να ανακαλέσετε το πιστοποιητικό σας, που έχει ήδη εκδοθεί, χρησιμοποιείστε το 5 | ακόλουθο PIN : 6 | $PIN 7 | 8 | Ευχαριστούμε πολύ, 9 | Υπηρεσία Αρχής Πιστοποίησης. 10 | -------------------------------------------------------------------------------- /src/common/lib/mails/en_GB/expiringMail.msg: -------------------------------------------------------------------------------- 1 | Dear Owner of Certificate __CERT_SERIAL__, 2 | 3 | The certificate with the serial __CERT_SERIAL__ and the subject 4 | __CERT_SUBJECT__ will expire at __CERT_NOTAFTER__. 5 | The certificate was issued for __CERT_CN__. 6 | 7 | Please visit our webpage to request a new certificate or 8 | contact your registration authority to renew the certificate. 9 | You can simply reply to this email for further information. 10 | 11 | @httpd_protocol@://@httpd_host@@httpd_port@ 12 | 13 | Please remember that the services for which the certificate 14 | is used will probably no longer be usable once the certificate 15 | expires. 16 | 17 | Sincerely Yours, 18 | @ca_organization@ Security Staff. 19 | -------------------------------------------------------------------------------- /src/common/lib/mails/en_GB/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Dear Customer, 2 | 3 | Your certificate with the serial number @__SERIAL__@ and the DN @__DN__@ has been 4 | generated. You can download it now. 5 | 6 | Please use the PIN you entered during the generation of 7 | the request to revoke the certificate. 8 | 9 | Sincerely, your administration team 10 | -------------------------------------------------------------------------------- /src/common/lib/mails/en_GB/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Dear Customer, 2 | 3 | Your certificate with the serial number @__SERIAL__@ and the DN @__DN__@ has been 4 | generated. You can download it now. 5 | 6 | Please use the following PIN to revoke your certificate: 7 | 8 | $PIN 9 | 10 | Sincerely, your adminstration team 11 | -------------------------------------------------------------------------------- /src/common/lib/mails/es_ES/expiringMail.msg: -------------------------------------------------------------------------------- 1 | 2 | Apreciado Propietario del Certificado __CERT_SERIAL__, 3 | 4 | El certificado con el serial __CERT_SERIAL__ y el asunto 5 | __CERT_SUBJECT__ va a vencer el __CERT_NOTAFTER__. 6 | El certificado fue emitido para __CERT_CN__. 7 | 8 | Por favor visite nuestra pagina para solicitar un nuevo 9 | certificado o contacte nuestra autoridad de registro para 10 | renovar el certificado. 11 | Ud. puede simplemente responder esta correo para infomacion 12 | adicional 13 | 14 | @httpd_protocol@://@httpd_host@@httpd_port@ 15 | 16 | Por favor recuerde que los servicios para los cuales el 17 | certificado es usado probablemente dejaran de funcionar este 18 | certificado vence. 19 | 20 | Cordial Saludo, 21 | @ca_organization@ Security Staff. 22 | -------------------------------------------------------------------------------- /src/common/lib/mails/es_ES/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Apreciado Cliente, 2 | 3 | Su certificado con el serial @__SERIAL__@ y el DN @__DN__@ fue generado. 4 | Ud puede descargarlo ahora. 5 | 6 | Por favor use el PIN que Ud. ingreso durante la generacion 7 | de la solicitud para revocar el certificado (cuando sea necesario). 8 | 9 | Cordial Saludo, 10 | @ca_organization@ Security Staff. 11 | 12 | -------------------------------------------------------------------------------- /src/common/lib/mails/es_ES/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | 2 | Apreciado Cliente, 3 | 4 | Su certificado con el serial @__SERIAL__@ y el DN @__DN__@ fue generado. 5 | Ud. puede descargarlo ahora. 6 | 7 | Por favor use el siguiente PIN para revocar su certificado 8 | cuando lo considere necesario: 9 | 10 | $PIN 11 | 12 | Cordial Saludo, 13 | @ca_organization@ Security Staff. 14 | 15 | -------------------------------------------------------------------------------- /src/common/lib/mails/fr_FR/expiringMail.msg: -------------------------------------------------------------------------------- 1 | Dear Owner of Certificate __CERT_SERIAL__, 2 | 3 | the certificate with the serial __CERT_SERIAL__ and the subject 4 | __CERT_SUBJECT__ will expiring at __CERT_NOTAFTER__. 5 | The certificate was issued for __CERT_CN__. 6 | 7 | Please visit our webpage to request a new certificate or 8 | contact your registration authority to renew the certificate. 9 | You can simply reply to this email for further informations. 10 | 11 | @httpd_protocol@://@httpd_host@@httpd_port@ 12 | 13 | Please remember that the services for which the certificate 14 | is used will propably no longer usable if the certificate 15 | is expired. 16 | 17 | Sincerily Yours, 18 | @ca_organization@ Security Staff. 19 | -------------------------------------------------------------------------------- /src/common/lib/mails/fr_FR/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Dear Customer, 2 | 3 | your certificate was generated. You can download it now. 4 | 5 | Please use the PIN you are entered during the generation of 6 | the request to revoke the certificate. 7 | 8 | Sincerly, your adminstration team 9 | -------------------------------------------------------------------------------- /src/common/lib/mails/fr_FR/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Dear Customer, 2 | 3 | your certificate was generated. You can download it now. 4 | 5 | Please use the following PIN to revoke your certificate: 6 | 7 | $PIN 8 | 9 | Sincerly, your adminstration team 10 | -------------------------------------------------------------------------------- /src/common/lib/mails/it_IT/expiringMail.msg: -------------------------------------------------------------------------------- 1 | Dear Owner of Certificate __CERT_SERIAL__, 2 | 3 | the certificate with the serial __CERT_SERIAL__ and the subject 4 | __CERT_SUBJECT__ will expiring at __CERT_NOTAFTER__. 5 | The certificate was issued for __CERT_CN__. 6 | 7 | Please visit our webpage to request a new certificate or 8 | contact your registration authority to renew the certificate. 9 | You can simply reply to this email for further informations. 10 | 11 | @httpd_protocol@://@httpd_host@@httpd_port@ 12 | 13 | Please remember that the services for which the certificate 14 | is used will propably no longer usable if the certificate 15 | is expired. 16 | 17 | Sincerily Yours, 18 | @ca_organization@ Security Staff. 19 | -------------------------------------------------------------------------------- /src/common/lib/mails/it_IT/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Dear Customer, 2 | 3 | your certificate was generated. You can download it now. 4 | 5 | Please use the PIN you are entered during the generation of 6 | the request to revoke the certificate. 7 | 8 | Sincerly, your adminstration team 9 | -------------------------------------------------------------------------------- /src/common/lib/mails/it_IT/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Dear Customer, 2 | 3 | your certificate was generated. You can download it now. 4 | 5 | Please use the following PIN to revoke your certificate: 6 | 7 | $PIN 8 | 9 | Sincerly, your adminstration team 10 | -------------------------------------------------------------------------------- /src/common/lib/mails/ja_JP/confirm_cert_sign.msg: -------------------------------------------------------------------------------- 1 | 利用者の皆様へ 2 | 3 | あなたの証明書(シリアル番号:@__SERIAL__@, DN:@__DN__@)が 4 | 生成されました。以下のURIにおいて、サーバからすぐにダウンロードできます。 5 | 6 | @httpd_protocol@://@httpd_host@@httpd_port@ 7 | 8 | シリアル番号を使用してください。 9 | また、以下のリンクをたどることで、サーバから直接証明書を 10 | インポートすることもできます。(こちらは特に操作を必要としません) 11 | 12 | @httpd_protocol@://@httpd_host@@httpd_port@@pub_cgi_url_prefix@/pki?cmd=getcert&key=@__SERIAL__@&type=CERTIFICATE 13 | 14 | あなたの証明書の正当性を検証するために、サーバから 15 | CA証明書(またはPKI chain)をインポートしてください。 16 | 17 | @httpd_protocol@://@httpd_host@@httpd_port@@pub_htdocs_url_prefix@ 18 | 19 | 少なくともひとつはプライベートキーの安全なバックアップを 20 | 取ることを忘れないでください。:もし紛失した場合、その時点までに 21 | 受け取った暗号化済みメッセージを読めなくなります。 22 | 23 | よろしくお願いします。 24 | @ca_organization@ セキュリティスタッフ一同 25 | -------------------------------------------------------------------------------- /src/common/lib/mails/ja_JP/expiringMail.msg: -------------------------------------------------------------------------------- 1 | 証明書所有者のみなさまへ __CERT_SERIAL__ 2 | 3 | シリアル番号: __CERT_SERIAL__ , 所有者: __CERT_SUBJECT__ 4 | の証明書は __CERT_NOTAFTER__ に失効します。 5 | この証明書は __CERT_CN__ 様に対して発行されました。 6 | 7 | 証明書の更新のため登録局と連絡を取るか、新しい証明書を要求するために 8 | 我々のWebページを訪れてください。 9 | より詳しい情報については、このメールに対して返信してください。 10 | 11 | @httpd_protocol@://@httpd_host@@httpd_port@ 12 | 13 | 証明書が失効した場合、その証明書を使用したサービスは 14 | おそらく利用できなくなることを忘れないでください。 15 | 16 | 17 | よろしくお願いします 18 | @ca_organization@ セキュリティスタッフ一同 -------------------------------------------------------------------------------- /src/common/lib/mails/ja_JP/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | 利用者の皆様へ 2 | 3 | あなたの証明書が生成されました。 4 | すぐにダウンロードできます。 5 | 6 | 証明書の破棄要求生成までの間、 7 | 入力したPINを使用してください。 8 | 9 | よろしくお願いします。 管理者チーム一同 -------------------------------------------------------------------------------- /src/common/lib/mails/ja_JP/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | 利用者の皆様へ 2 | 3 | あなたの証明書が生成されました。 4 | すぐにダウンロードできます。 5 | 6 | 証明書を破棄するには、以下のPINを使用してください。 7 | 8 | $PIN 9 | 10 | よろしくお願いします。 管理者チーム一同 -------------------------------------------------------------------------------- /src/common/lib/mails/pl_PL/expiringMail.msg: -------------------------------------------------------------------------------- 1 | Witam! 2 | 3 | 4 | Przypominam, że certyfikat o numerze seryjnym __CERT_SERIAL__ 5 | wydany dla __CERT_DN__ 6 | (__CERT_SUBJECT__) 7 | wygasa z dniem __CERT_NOAFTER__. 8 | 9 | Aby ponownie złożyć zlecenie certyfikacji, odwiedź naszą witrynę. 10 | @httpd_protocol@://@httpd_host@@httpd_port@ 11 | 12 | Jeśli chcesz odnowić certyfikat, skontaktuj się z naszym 13 | Centrum Rejestracyjnym. 14 | 15 | Aby uzyskać więcej informacji odpisz na tą wiadomość. 16 | 17 | Pamiętaj o tym, że usługi, w których wykorzystujesz certyfikat mogą 18 | przestać funkcjonować poprawnie po wygaśnięciu certyfikatu. 19 | 20 | 21 | Pozdrawiam 22 | 23 | Operator 24 | -------------------------------------------------------------------------------- /src/common/lib/mails/pl_PL/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Witam! 2 | 3 | 4 | Twój certyfikat został wydany i jest gotowy do pobrania. 5 | 6 | Do unieważnienia tego certyfikatu potrzebny będzie numer PIN, 7 | który podano przy składaniu zlecenia certyfikacji. 8 | Zachowaj go na przyszłość. 9 | 10 | 11 | Pozdrawiam 12 | 13 | Operator 14 | -------------------------------------------------------------------------------- /src/common/lib/mails/pl_PL/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Witam! 2 | 3 | 4 | Twój certyfikat został wydany i jest gotowy do pobrania. 5 | 6 | Do unieważnienia tego certyfikatu potrzebny będzie 7 | poniższy kod (zachowaj go na przyszłość): 8 | 9 | $PIN 10 | 11 | 12 | Pozdrawiam 13 | 14 | Operator 15 | -------------------------------------------------------------------------------- /src/common/lib/mails/ru_RU/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Уважаемый пользователь, 2 | 3 | ваш сертификат с серийным номером @__SERIAL__@ 4 | и уникальным именем @__DN__@ 5 | был успешно создан. 6 | Теперь вы можете его загрузить с нашего сервера. 7 | 8 | Для блокирования этого сертификата вам понадобится код доступа (PIN), 9 | который вы вводили при генерации сертификата 10 | 11 | С уважением, административная группа. 12 | 13 | -------------------------------------------------------------------------------- /src/common/lib/mails/ru_RU/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Уважаемый пользователь, 2 | 3 | ваш сертификат с серийным номером @__SERIAL__@ 4 | и уникальным именем @__DN__@ 5 | был успешно создан. 6 | еперь вы можете его загрузить с нашего сервера. 7 | 8 | Для блокирования этого сертификата вам понадобится 9 | следующий код доступа (PIN): 10 | 11 | $PIN 12 | 13 | С уважением, административная группа. 14 | 15 | -------------------------------------------------------------------------------- /src/common/lib/mails/sl_SI/expiringMail.msg: -------------------------------------------------------------------------------- 1 | Spoštovani lastnik certifikata __CERT_SERIAL__, 2 | 3 | 4 | certifikata s serijsko številko __CERT_SERIAL__ in subjektom __CERT_SUBJECT__ bo potekel dne __CERT_NOTAFTER__. 5 | Certifikat je bil izdan za __CERT_CN__. 6 | 7 | Prosimo, obiščite našo spletno stran in oddajte zahtevek za nov certifikat ali stopite v stik z nami in zahtevajte obnovitev vašega certifikata. Če želite, lahko odgovorite kar na to sporočilo in zahtevate nadaljnja pojasnila. 8 | 9 | @httpd_protocol@://@httpd_host@@httpd_port@ 10 | 11 | Prosimo, upoštevajte da storitve, za katero ste uporabljali vaš certifikat, ne boste mogli več uporabljati, ko bo certifikat dokončno potekel. 12 | 13 | 14 | Lep pozdrav, 15 | @ca_organization@ varnostna ekipa. 16 | -------------------------------------------------------------------------------- /src/common/lib/mails/sl_SI/request_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Spoštovani, 2 | 3 | Vaš certifikat s serijsko številko @__SERIAL__@ in DN @__DN__@ je bil generiran. Z našega strežnika ga lahko posnamete na sledečem naslovu: 4 | 5 | @httpd_protocol@://@httpd_host@@httpd_port@ 6 | 7 | Prosimo, da vnesete PIN, ki ste ga izbrali, med izdelavo zahtevka za podpis certifikata. 8 | 9 | Lep pozdrav, 10 | @ca_organization@ varnostna ekipa. 11 | -------------------------------------------------------------------------------- /src/common/lib/mails/sl_SI/secure_pin_mail.msg: -------------------------------------------------------------------------------- 1 | Spoštovani, 2 | 3 | Vaš certifikat s serijsko številko @__SERIAL__@ in DN @__DN__@ je bil generiran. Z našega strežnika ga lahko posnamete na sledečem naslovu: 4 | 5 | @httpd_protocol@://@httpd_host@@httpd_port@ 6 | 7 | Prosimo, uporabite sledeči PIN, ko boste želeli preklicati certifikat: 8 | 9 | $PIN 10 | 11 | (V kolikor certifikata v tem trenutku ne želite preklicati, si številko PIN shranite na varno mesto, za poznejšo uporabo.) 12 | 13 | Lep pozdrav, 14 | @ca_organization@ varnostna ekipa. 15 | -------------------------------------------------------------------------------- /src/common/lib/stylesheets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/lib/stylesheets/Makefile -------------------------------------------------------------------------------- /src/common/lib/stylesheets/default.css: -------------------------------------------------------------------------------- 1 | /* 2 | * General CSS stylesheet for OpenCA 3 | * by Massimiliano Pala and OpenCA Group 4 | * All rights reserved 5 | * 6 | */ 7 | 8 | @import "menu-openca.css"; 9 | @import "main-openca.css"; 10 | @import "dynmenu-openca.css"; 11 | @import "openca-home-2.css"; 12 | 13 | html { 14 | margin: 0pt; 15 | } 16 | 17 | body { 18 | margin: 0pt; 19 | background: white; 20 | } 21 | 22 | a { 23 | text-decoration: none; 24 | /*color: #ff9900; */ 25 | } 26 | 27 | img { 28 | text-decoration: none; 29 | color: #ffffff; 30 | border-width: 0; 31 | } 32 | 33 | -------------------------------------------------------------------------------- /src/common/var/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/var/Makefile -------------------------------------------------------------------------------- /src/common/var/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/var/crypto/Makefile -------------------------------------------------------------------------------- /src/common/var/crypto/crlnumber: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /src/common/var/crypto/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/var/crypto/index.txt -------------------------------------------------------------------------------- /src/common/var/crypto/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = no 2 | -------------------------------------------------------------------------------- /src/common/var/crypto/serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /src/common/var/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/var/empty.txt -------------------------------------------------------------------------------- /src/common/var/mail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/common/var/mail/Makefile -------------------------------------------------------------------------------- /src/common/var/mail/mailcounter: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/ext-modules/Authen-SASL-2.15.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Authen-SASL-2.15.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Bit-Vector-7.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Bit-Vector-7.3.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/CGI-Session-4.48.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/CGI-Session-4.48.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/CGI.pm-4.03.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/CGI.pm-4.03.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Convert-ASN1-0.22.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Convert-ASN1-0.22.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/DBD-Pg-3.5.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/DBD-Pg-3.5.3.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/DBD-mysql-4.027.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/DBD-mysql-4.027.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/DBI-1.636.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/DBI-1.636.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/DB_File-1.831.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/DB_File-1.831.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Digest-HMAC-1.03.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Digest-HMAC-1.03.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Digest-MD5-2.51.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Digest-MD5-2.51.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Digest-SHA-5.92.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Digest-SHA-5.92.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Digest-SHA1-2.13.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Digest-SHA1-2.13.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/FCGI-0.75.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/FCGI-0.75.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/File-Temp-0.22.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/File-Temp-0.22.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/IO-Socket-SSL-1.31.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/IO-Socket-SSL-1.31.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/IO-stringy-2.110.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/IO-stringy-2.110.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/MIME-Base64-3.14.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/MIME-Base64-3.14.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/MIME-Lite-3.027.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/MIME-Lite-3.027.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/MIME-tools-5.502.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/MIME-tools-5.502.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/MailTools-2.09.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/MailTools-2.09.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Makefile -------------------------------------------------------------------------------- /src/ext-modules/Net-SSLeay-1.40.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Net-SSLeay-1.40.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Net-Server-2.007.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Net-Server-2.007.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/Parse-RecDescent-1.94.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/Parse-RecDescent-1.94.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/URI-1.52.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/URI-1.52.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/X500-DN-0.29.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/X500-DN-0.29.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/XML-Parser-2.41.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/XML-Parser-2.41.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/XML-SAX-Base-1.08.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/XML-SAX-Base-1.08.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/XML-Twig-3.39-1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/XML-Twig-3.39-1.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/libintl-perl-1.20.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/libintl-perl-1.20.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/perl-ldap-0.43.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/perl-ldap-0.43.tar.gz -------------------------------------------------------------------------------- /src/ext-modules/version-0.9917.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/ext-modules/version-0.9917.tar.gz -------------------------------------------------------------------------------- /src/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/modules/Makefile -------------------------------------------------------------------------------- /src/modules/openca-ac/AC.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | OpenCA::AC - Perl module to manage the access control of OpenCA . 4 | 5 | =head1 SYNOPSIS 6 | 7 | use OpenCA::AC; 8 | 9 | =head1 DESCRIPTION 10 | 11 | Sorry, no documentation available yet. The module is not complete until now. 12 | 13 | =head1 AUTHOR 14 | 15 | Michael Bell 16 | 17 | =head1 SEE ALSO 18 | 19 | perl(1). 20 | 21 | =cut 22 | -------------------------------------------------------------------------------- /src/modules/openca-ac/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::AC. 2 | -------------------------------------------------------------------------------- /src/modules/openca-ac/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | AC.pm 3 | AC.pod 4 | MANIFEST 5 | LICENSE 6 | README 7 | Makefile.PL 8 | t/use.t 9 | -------------------------------------------------------------------------------- /src/modules/openca-ac/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::AC', 6 | 'VERSION_FROM' => 'AC.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'AC.pod'} 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-ac/t/use.t: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl -w 2 | use strict; 3 | use Test; 4 | BEGIN { plan tests => 1 } 5 | 6 | use OpenCA::AC; ok(1); 7 | exit; 8 | -------------------------------------------------------------------------------- /src/modules/openca-configuration/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::Configuration. 2 | 3 | 1.5.3 Tue Apr 09 18:05:22 2002 4 | Added possibility of having parameters on more lines ending with 5 | the '\' character. 6 | 7 | 1.2 Thu Apr 22 01:13:18 1999 8 | Added Support for standard Makefiles. Corrected some major bug in config 9 | files parsing. 10 | 11 | Added Licence Notice. 12 | -------------------------------------------------------------------------------- /src/modules/openca-configuration/Configuration.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | OpenCA::Configuration - Perl extention to deal with config files. 4 | 5 | =head1 SYNOPSIS 6 | 7 | use OpenCA::Configuration; 8 | 9 | =head1 DESCRIPTION 10 | 11 | Sorry, no documentation available yet. 12 | 13 | =head1 AUTHOR 14 | 15 | Massimiliano Pala 16 | 17 | =head1 SEE ALSO 18 | 19 | perl(1). 20 | 21 | =cut 22 | -------------------------------------------------------------------------------- /src/modules/openca-configuration/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Configuration.pm 3 | Configuration.pod 4 | README 5 | MANIFEST 6 | LICENSE 7 | Makefile.PL 8 | test.pl 9 | docs/API.txt 10 | docs/History 11 | examples/ReadCfg.pl 12 | examples/RegAuth.conf 13 | -------------------------------------------------------------------------------- /src/modules/openca-configuration/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::Configuration', 6 | 'VERSION_FROM' => 'Configuration.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'Configuration.pod'} 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-configuration/docs/History: -------------------------------------------------------------------------------- 1 | Ver 1.01b - First Public Available Version 2 | 3 | Ver 1.1 - Added functions to check the configuration file 4 | ( parameters and parameters values ). Corrected 5 | a bug in the returning 6 | 7 | -------------------------------------------------------------------------------- /src/modules/openca-configuration/test.pl: -------------------------------------------------------------------------------- 1 | # Before `make install' is performed this script should be runnable with 2 | # `make test'. After `make install' it should work as `perl test.pl' 3 | 4 | ######################### We start with some black magic to print on failure. 5 | 6 | # Change 1..1 below to 1..last_test_to_print . 7 | # (It may become useful if the test is moved to ./t subdirectory.) 8 | 9 | BEGIN { $| = 1; print "1..1\n"; } 10 | END {print "not ok 1\n" unless $loaded;} 11 | use OpenCA::Configuration; 12 | $loaded = 1; 13 | print "ok 1\n"; 14 | 15 | ######################### End of black magic. 16 | 17 | # Insert your test code below (better if it prints "ok 13" 18 | # (correspondingly "not ok 13") depending on the success of chunk 13 19 | # of the test code): 20 | 21 | -------------------------------------------------------------------------------- /src/modules/openca-crl/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::CRL. 2 | 3 | 0.1.0 Thu Feb 10 12:23:48 2000 4 | - original version; created by h2xs 1.19 5 | 6 | -------------------------------------------------------------------------------- /src/modules/openca-crl/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | CRL.pm 3 | CRL.pod 4 | Makefile.PL 5 | MANIFEST 6 | LICENSE 7 | prova.pl 8 | test.pl 9 | -------------------------------------------------------------------------------- /src/modules/openca-crl/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::CRL', 6 | 'VERSION_FROM' => 'CRL.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'CRL.pod'} 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-crl/test.pl: -------------------------------------------------------------------------------- 1 | # Before `make install' is performed this script should be runnable with 2 | # `make test'. After `make install' it should work as `perl test.pl' 3 | 4 | ######################### We start with some black magic to print on failure. 5 | 6 | # Change 1..1 below to 1..last_test_to_print . 7 | # (It may become useful if the test is moved to ./t subdirectory.) 8 | 9 | BEGIN { $| = 1; print "1..1\n"; } 10 | END {print "not ok 1\n" unless $loaded;} 11 | use OpenCA::CRL; 12 | $loaded = 1; 13 | print "ok 1\n"; 14 | 15 | ######################### End of black magic. 16 | 17 | # Insert your test code below (better if it prints "ok 13" 18 | # (correspondingly "not ok 13") depending on the success of chunk 13 19 | # of the test code): 20 | 21 | -------------------------------------------------------------------------------- /src/modules/openca-crypto/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::Crypto. 2 | -------------------------------------------------------------------------------- /src/modules/openca-crypto/Crypto.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | OpenCA::Crypto - Perl module to manage the tokens of OpenCA . 4 | 5 | =head1 SYNOPSIS 6 | 7 | use OpenCA::Crypto; 8 | 9 | =head1 DESCRIPTION 10 | 11 | Sorry, no documentation available yet. The module is not complete until now. 12 | 13 | =head1 AUTHOR 14 | 15 | Michael Bell 16 | 17 | =head1 SEE ALSO 18 | 19 | perl(1). 20 | 21 | =cut 22 | -------------------------------------------------------------------------------- /src/modules/openca-crypto/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Crypto.pm 3 | Crypto.pod 4 | MANIFEST 5 | LICENSE 6 | Makefile.PL 7 | Token/Empty.pm 8 | Token/LunaCA3.pm 9 | Token/nCipher.pm 10 | Token/OpenSC.pm 11 | Token/OpenSSL.pm 12 | -------------------------------------------------------------------------------- /src/modules/openca-crypto/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::Crypto', 6 | 'VERSION_FROM' => 'Crypto.pm', # finds $VERSION 7 | 'PMLIBDIRS' => [ 'Token' ], 8 | # 'MAN3PODS' => {'Crypto.pod'} 9 | ); 10 | -------------------------------------------------------------------------------- /src/modules/openca-crypto/t/use.t: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl -w 2 | use strict; 3 | use Test; 4 | BEGIN { plan tests => 1 } 5 | 6 | use OpenCA::Crypto; ok(1); 7 | exit; 8 | -------------------------------------------------------------------------------- /src/modules/openca-dbi/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::DBI. 2 | -------------------------------------------------------------------------------- /src/modules/openca-dbi/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | DBI.pm 3 | Makefile.PL 4 | MANIFEST 5 | LICENSE 6 | -------------------------------------------------------------------------------- /src/modules/openca-dbi/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::DBI', 6 | 'VERSION_FROM' => 'DBI.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'DBI.pod'}, 8 | 'PREREQ_PM' => { 9 | 'OpenCA::REQ' => '0.9', 10 | 'OpenCA::X509' => '0.9', 11 | 'OpenCA::CRL' => '0.9', 12 | 'OpenCA::OpenSSL' => '0.9', 13 | 'OpenCA::Tools' => '0.4', 14 | 'DBI' => '1.19' 15 | } 16 | ); 17 | -------------------------------------------------------------------------------- /src/modules/openca-ldap/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::LDAP. 2 | -------------------------------------------------------------------------------- /src/modules/openca-ldap/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | LDAP.pm 3 | Makefile.PL 4 | MANIFEST 5 | LICENSE 6 | -------------------------------------------------------------------------------- /src/modules/openca-ldap/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::LDAP', 6 | 'VERSION_FROM' => 'LDAP.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'CRL.pod'} 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-log/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::Log. 2 | 3 | 0.01 Mon Apr 28 09:41:03 2003 4 | - original version; created by h2xs 1.21 with options 5 | -X OpenCA::Log 6 | 7 | -------------------------------------------------------------------------------- /src/modules/openca-log/Log.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | OpenCA::Log - Perl module to manage the logging of OpenCA . 4 | 5 | =head1 SYNOPSIS 6 | 7 | use OpenCA::Log; 8 | 9 | =head1 DESCRIPTION 10 | 11 | Sorry, no documentation available yet. The module is not complete until now. 12 | 13 | =head1 AUTHOR 14 | 15 | Michael Bell 16 | 17 | =head1 SEE ALSO 18 | 19 | perl(1). 20 | 21 | =cut 22 | -------------------------------------------------------------------------------- /src/modules/openca-log/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Log.pm 3 | Log.pod 4 | Makefile.PL 5 | MANIFEST 6 | README 7 | Log/Message.pm 8 | Logger/Syslog.pm 9 | Logger/Syslog/Net.pm 10 | Logger/Syslog/Sys.pm 11 | Logger/Syslog/Unix.pm 12 | Logger/XML.pm 13 | -------------------------------------------------------------------------------- /src/modules/openca-log/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::Log', 6 | 'VERSION_FROM' => 'Log.pm', # finds $VERSION 7 | 'PMLIBDIRS' => [ 'Log', 'Logger', 'Logger/Syslog' ], 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-openssl/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::OpenSSL. 2 | 3 | 0.1.0 Thu Feb 10 12:23:53 2000 4 | - original version; created by h2xs 1.19 5 | 6 | 2.1.0 Sat Aug 3 10:22:52 EDT 2013 7 | - applied patches from Carlos Velasco (fixed memory leaks) 8 | -------------------------------------------------------------------------------- /src/modules/openca-openssl/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Makefile.PL 3 | MANIFEST 4 | OpenSSL.pm 5 | OpenSSL.pod 6 | OpenSSL.xs 7 | LICENSE 8 | ppport.h 9 | test.pl 10 | typemap 11 | OpenSSL/SMIME.pm 12 | doc/openca-openssl.html 13 | fallback/const-c.inc 14 | fallback/const-xs.inc 15 | test/openssl_test.pl 16 | t/1.t 17 | t/2.t 18 | t/3.t 19 | t/4.t 20 | t/5.t 21 | t/testcert.der 22 | t/testcert.pem 23 | t/testcrl.der 24 | t/testcrl.pem 25 | t/testreq.der 26 | t/testreq.pem 27 | -------------------------------------------------------------------------------- /src/modules/openca-openssl/OpenSSL/SMIME.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/modules/openca-openssl/OpenSSL/SMIME.pod -------------------------------------------------------------------------------- /src/modules/openca-openssl/t/testcert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/modules/openca-openssl/t/testcert.der -------------------------------------------------------------------------------- /src/modules/openca-openssl/t/testcrl.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/modules/openca-openssl/t/testcrl.der -------------------------------------------------------------------------------- /src/modules/openca-openssl/t/testcrl.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN X509 CRL----- 2 | MIIBrDCBlTANBgkqhkiG9w0BAQQFADBPMQswCQYDVQQGEwJERTEoMCYGA1UEChMf 3 | SHVtYm9sZHQtVW5pdmVyc2l0YWV0IHp1IEJlcmxpbjEWMBQGA1UECxMNREJJIFRl 4 | c3QgQ0EgMhcNMDIxMjEwMTUxNDA1WhcNMDMwMTA5MTUxNDA1WjAVMBMCAgDbFw0w 5 | MjEwMDIxMjA2NDNaMA0GCSqGSIb3DQEBBAUAA4IBAQBubudRUBy6DSID9kg9gnWK 6 | pcJcgpdjrkd9KvlyJ3d6VCZwa0hJowsUvaNNXSZOaZa6lOQ/HPUyVSC1DJiqZ4NR 7 | jCyHehnHuzTy6VXIZZoAteEB1bHrnQCQmBG1ywMFnH2/NgZ8rHybZ36JZsiEDi+s 8 | TkAgytOz/SVByhiCTQSIT4WSx+tQmRcdXVaPxF4Zouado4aVjZIqQ3pGEMRiisvy 9 | LzJh2olN6iHzoxvGpS+DmdzxlkozXgUx5yFvKW0QYhXY2jTnbI7pmn9zZyyccCjs 10 | pQ6lVmAPprnnFf6PRgoGpfsMhr8z2qUM7geJT7o1fZMLfbgsIK4UbI0I89NCHCNk 11 | -----END X509 CRL----- 12 | -------------------------------------------------------------------------------- /src/modules/openca-openssl/t/testreq.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/modules/openca-openssl/t/testreq.der -------------------------------------------------------------------------------- /src/modules/openca-openssl/t/testreq.spkac: -------------------------------------------------------------------------------- 1 | emailAddress = pki@openca.org 2 | CN = Testuser 3 | O = OpenCA 4 | C= DE 5 | SPKAC=MIG5MGUwXDANBgkqhkiG9w0BAQEFAANLADBIAkEA1cCoq2Wa3Ixs47uI7F\ 6 | PVwHVIPDx5yso105Y6zpozam135a8R0CpoRvkkigIyXfcCjiVi5oWk+6FfPaD03u\ 7 | PFoQIDAQABFgVoZWxsbzANBgkqhkiG9w0BAQQFAANBAFpQtY/FojdwkJh1bEIYuc\ 8 | 2EeM2KHTWPEepWYeawvHD0gQ3DngSC75YCWnnDdq+NQ3F+X4deMx9AaEglZtULwV\ 9 | 4= 10 | -------------------------------------------------------------------------------- /src/modules/openca-openssl/typemap: -------------------------------------------------------------------------------- 1 | 2 | OpenCA_OpenSSL_X509 T_PTROBJ_SPECIAL 3 | OpenCA_OpenSSL_CRL T_PTROBJ_SPECIAL 4 | OpenCA_OpenSSL_SPKAC T_PTROBJ_SPECIAL 5 | OpenCA_OpenSSL_PKCS10 T_PTROBJ_SPECIAL 6 | 7 | INPUT 8 | 9 | T_PTROBJ_SPECIAL 10 | if (sv_derived_from($arg, \"${(my $ntt=$ntype)=~s/_/::/g;\$ntt}\")) { 11 | IV tmp = SvIV((SV*)SvRV($arg)); 12 | $var = INT2PTR($type,tmp); 13 | } 14 | else 15 | croak(\"$var is not of type ${(my $ntt=$ntype)=~s/_/::/g;\$ntt}\") 16 | 17 | OUTPUT 18 | 19 | T_PTROBJ_SPECIAL 20 | sv_setref_pv($arg, \"${(my $ntt=$ntype)=~s/_/::/g;\$ntt}\", 21 | (void*)$var); 22 | -------------------------------------------------------------------------------- /src/modules/openca-pkcs7/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::PKCS#7 2 | 3 | 0.1.24 Added chain correct verification; 4 | Added a test program in the test directory (pkcs7_test.pl) 5 | 6 | 0.1.0 Thu Feb 10 12:23:40 2000 7 | - original version; created by h2xs 1.19 8 | 9 | -------------------------------------------------------------------------------- /src/modules/openca-pkcs7/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Makefile.PL 3 | MANIFEST 4 | test.pl 5 | PKCS7.pm 6 | LICENSE 7 | test/pkcs7_test.pl 8 | test/TEXT 9 | test/TEXT.sig 10 | test/cacert.pem 11 | test/chain/6b950e78.0 12 | test/chain/Makefile 13 | test/chain/cacert.crt 14 | -------------------------------------------------------------------------------- /src/modules/openca-pkcs7/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::PKCS7', 6 | 'VERSION_FROM' => 'PKCS7.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'PKCS7.pod'}, 8 | 'PREREQ_PM' => {'X500::DN' => '0.27'} 9 | ); 10 | -------------------------------------------------------------------------------- /src/modules/openca-pkcs7/test.pl: -------------------------------------------------------------------------------- 1 | # Before `make install' is performed this script should be runnable with 2 | # `make test'. After `make install' it should work as `perl test.pl' 3 | 4 | ######################### We start with some black magic to print on failure. 5 | 6 | # Change 1..1 below to 1..last_test_to_print . 7 | # (It may become useful if the test is moved to ./t subdirectory.) 8 | 9 | BEGIN { $| = 1; print "1..1\n"; } 10 | END {print "not ok 1\n" unless $loaded;} 11 | 12 | use OpenCA::X509; 13 | use OpenCA::OpenSSL; 14 | 15 | $loaded = 1; 16 | print "ok 1\n"; 17 | 18 | ######################### End of black magic. 19 | 20 | # Insert your test code below (better if it prints "ok 13" 21 | # (correspondingly "not ok 13") depending on the success of chunk 13 22 | # of the test code): 23 | -------------------------------------------------------------------------------- /src/modules/openca-req/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::REQ. 2 | 3 | 0.1.0 Sat Feb 12 19:01:37 2000 4 | - original version; created by h2xs 1.19 5 | 6 | -------------------------------------------------------------------------------- /src/modules/openca-req/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Makefile.PL 3 | MANIFEST 4 | REQ.pm 5 | test.pl 6 | prova.pl 7 | spkac.req 8 | LICENSE 9 | -------------------------------------------------------------------------------- /src/modules/openca-req/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::REQ', 6 | 'VERSION_FROM' => 'REQ.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'REQ.pod'}, 8 | 'PREREQ_PM' => { 9 | 'Digest::MD5' => '2.14', 10 | 'X500::DN' => '0.27' 11 | } 12 | ); 13 | -------------------------------------------------------------------------------- /src/modules/openca-req/spkac.req: -------------------------------------------------------------------------------- 1 | TYPE = NETSCAPE 2 | PASSWD = BLUESBOSSAJAZZ 3 | EMAIL = gomes@pta.com.br 4 | CN = Rogerio_Gomes 5 | OU = OpenCA Developer 6 | O = OpenCA Organization 7 | C = IT 8 | SPKAC = MIIBQTCBqzCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAzt+HPN9hLAEJHthv9qwov5E6eLD/6Tt4Sy+41g3aUOET6HPpWVK9MTv16Df2aFTlD9h7jvU3ETsXIHPxU6mHWZRXuJhf37C7kqwq85DCRdYl0HFo+VJL1V6mKOmfnWMVRuyTyyU10cwXlluXOc39qNYH6gM1jMT5SsUVF+c0chUCAwEAARYHcGFzc3dkMTANBgkqhkiG9w0BAQQFAAOBgQAAbrhqqDzRWQYPjGcWIF2oTYu374C5QvB3k08K5wekeRa684ewg5g552fOqgvNVKdBdTjUzmIwQ+QjOxzkpAU4zUVx/ms3SwIapyM0KBjUYDAEvhde6IkYzaqsyP+pLBRi+b8onALlqSHz/DRpYKcKWOKyLYOsXI8/UIY6LY/XrQ== 9 | -------------------------------------------------------------------------------- /src/modules/openca-req/test.pl: -------------------------------------------------------------------------------- 1 | # Before `make install' is performed this script should be runnable with 2 | # `make test'. After `make install' it should work as `perl test.pl' 3 | 4 | ######################### We start with some black magic to print on failure. 5 | 6 | # Change 1..1 below to 1..last_test_to_print . 7 | # (It may become useful if the test is moved to ./t subdirectory.) 8 | 9 | BEGIN { $| = 1; print "1..1\n"; } 10 | END {print "not ok 1\n" unless $loaded;} 11 | use OpenCA::REQ; 12 | $loaded = 1; 13 | print "ok 1\n"; 14 | 15 | ######################### End of black magic. 16 | 17 | # Insert your test code below (better if it prints "ok 13" 18 | # (correspondingly "not ok 13") depending on the success of chunk 13 19 | # of the test code): 20 | 21 | -------------------------------------------------------------------------------- /src/modules/openca-session/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::Session. 2 | -------------------------------------------------------------------------------- /src/modules/openca-session/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Session.pm 3 | MANIFEST 4 | Makefile.PL 5 | -------------------------------------------------------------------------------- /src/modules/openca-session/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::Session', 6 | 'VERSION_FROM' => 'Session.pm', # finds $VERSION 7 | 'PMLIBDIRS' => [ 'Session' ], 8 | # 'MAN3PODS' => {'Session.pod'} 9 | ); 10 | -------------------------------------------------------------------------------- /src/modules/openca-session/Session.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | OpenCA::Session - Perl module to manage the sessions of OpenCA . 4 | 5 | =head1 SYNOPSIS 6 | 7 | use OpenCA::Session; 8 | 9 | =head1 DESCRIPTION 10 | 11 | Sorry, no documentation available yet. The module is not complete until now. 12 | 13 | =head1 AUTHOR 14 | 15 | Michael Bell 16 | 17 | =head1 SEE ALSO 18 | 19 | perl(1). 20 | 21 | =cut 22 | -------------------------------------------------------------------------------- /src/modules/openca-statemachine/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::StateMachine. 2 | -------------------------------------------------------------------------------- /src/modules/openca-statemachine/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | StateMachine.pm 3 | MANIFEST 4 | MODEL 5 | LICENSE 6 | README 7 | Makefile.PL 8 | t/1.t 9 | t/2.t 10 | t/3.t 11 | t/4.t 12 | -------------------------------------------------------------------------------- /src/modules/openca-statemachine/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::StateMachine', 6 | 'VERSION_FROM' => 'StateMachine.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'StateMachine.pod'} 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-statemachine/t/1.t: -------------------------------------------------------------------------------- 1 | #!/bin/perl 2 | 3 | use strict; 4 | use warnings; 5 | use Test; 6 | 7 | BEGIN { plan tests => 3 }; 8 | ok (1); 9 | 10 | if (-e "t/testdata.tar") 11 | { 12 | ok(1); 13 | } else { 14 | ok(0); 15 | } 16 | 17 | `tar -C t -xf t/testdata.tar`; 18 | 19 | if (-e "t/states.txt") 20 | { 21 | ok(1); 22 | } else { 23 | ok(0); 24 | } 25 | 26 | 1; 27 | -------------------------------------------------------------------------------- /src/modules/openca-statemachine/t/4.t: -------------------------------------------------------------------------------- 1 | #!/bin/perl 2 | 3 | use strict; 4 | use warnings; 5 | use Test; 6 | 7 | BEGIN { plan tests => 4 }; 8 | ok (1); 9 | 10 | if (-e "t/testdata.tar") 11 | { 12 | ok(1); 13 | } else { 14 | ok(0); 15 | } 16 | 17 | `cd t; rm -rf functions functions.txt states.txt users users.txt`; 18 | 19 | if (-e "t/states.txt") 20 | { 21 | ok(0); 22 | } else { 23 | ok(1); 24 | } 25 | 26 | if (-e "t/testdata.tar") 27 | { 28 | ok(1); 29 | } else { 30 | ok(0); 31 | } 32 | 33 | 1; 34 | -------------------------------------------------------------------------------- /src/modules/openca-tools/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::Tools. 2 | 3 | 0.1.2 Fri Feb 4 12:07:23 2000 4 | - original version; created by h2xs 1.19 5 | 6 | -------------------------------------------------------------------------------- /src/modules/openca-tools/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Makefile.PL 3 | MANIFEST 4 | test.pl 5 | prova.pl 6 | LICENSE 7 | Tools.pm 8 | -------------------------------------------------------------------------------- /src/modules/openca-tools/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::Tools', 6 | 'VERSION_FROM' => 'Tools.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'Tools.pod'} 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-tools/test.pl: -------------------------------------------------------------------------------- 1 | # Before `make install' is performed this script should be runnable with 2 | # `make test'. After `make install' it should work as `perl test.pl' 3 | 4 | ######################### We start with some black magic to print on failure. 5 | 6 | # Change 1..1 below to 1..last_test_to_print . 7 | # (It may become useful if the test is moved to ./t subdirectory.) 8 | 9 | BEGIN { $| = 1; print "1..1\n"; } 10 | END {print "not ok 1\n" unless $loaded;} 11 | use OpenCA::Tools; 12 | $loaded = 1; 13 | print "ok 1\n"; 14 | 15 | ######################### End of black magic. 16 | 17 | # Insert your test code below (better if it prints "ok 13" 18 | # (correspondingly "not ok 13") depending on the success of chunk 13 19 | # of the test code): 20 | 21 | -------------------------------------------------------------------------------- /src/modules/openca-tristatecgi/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::TRIStateCGI. 2 | 3 | 1.0 Wed Apr 28 13:21:35 1999 4 | First Release Version. 5 | 6 | -------------------------------------------------------------------------------- /src/modules/openca-tristatecgi/MANIFEST: -------------------------------------------------------------------------------- 1 | README 2 | LICENSE 3 | Changes 4 | MANIFEST 5 | Makefile.PL 6 | TRIStateCGI.pm 7 | test.pl 8 | -------------------------------------------------------------------------------- /src/modules/openca-tristatecgi/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::TRIStateCGI', 6 | 'VERSION_FROM' => 'TRIStateCGI.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'TRIStateCGI.pod'}, 8 | 'PREREQ_PM' => { 'CGI' => '0' } 9 | ); 10 | -------------------------------------------------------------------------------- /src/modules/openca-tristatecgi/test.pl: -------------------------------------------------------------------------------- 1 | # Before `make install' is performed this script should be runnable with 2 | # `make test'. After `make install' it should work as `perl test.pl' 3 | 4 | ######################### We start with some black magic to print on failure. 5 | 6 | # Change 1..1 below to 1..last_test_to_print . 7 | # (It may become useful if the test is moved to ./t subdirectory.) 8 | 9 | BEGIN { $| = 1; print "1..1\n"; } 10 | END {print "not ok 1\n" unless $loaded;} 11 | use OpenCA::TRIStateCGI; 12 | $loaded = 1; 13 | print "ok 1\n"; 14 | 15 | ######################### End of black magic. 16 | 17 | # Insert your test code below (better if it prints "ok 13" 18 | # (correspondingly "not ok 13") depending on the success of chunk 13 19 | # of the test code): 20 | 21 | -------------------------------------------------------------------------------- /src/modules/openca-ui-html/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::UI::HTML. 2 | -------------------------------------------------------------------------------- /src/modules/openca-ui-html/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | HTML.pm 3 | MANIFEST 4 | LICENSE 5 | Makefile.PL 6 | -------------------------------------------------------------------------------- /src/modules/openca-ui-html/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::UI::HTML', 6 | 'VERSION_FROM' => 'HTML.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'HTML.pod'} 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-user/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::User 2 | 3 | 0.1.0 Tue Mar 16 13:30:23 2010 4 | - First Version Created 5 | 6 | -------------------------------------------------------------------------------- /src/modules/openca-user/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Makefile.PL 3 | MANIFEST 4 | LICENSE 5 | User.pm 6 | -------------------------------------------------------------------------------- /src/modules/openca-user/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::User', 6 | 'VERSION_FROM' => 'User.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'User.pod'} 8 | 'PREREQ_PM' => { 9 | 'OpenCA::DBI' => '1.40', 10 | 'OpenCA::Tools' => '1.00', 11 | } 12 | ); 13 | -------------------------------------------------------------------------------- /src/modules/openca-x509/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::X509. 2 | 3 | 0.9.8 Thu Sep 27 19:36:03 2001 4 | - patched for object creation performance, compatible 5 | with OpenCA::OpenSSL version 0.8.43 (+) 6 | 7 | 0.1.0 Thu Feb 10 12:23:40 2000 8 | - original version; created by h2xs 1.19 9 | -------------------------------------------------------------------------------- /src/modules/openca-x509/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Makefile.PL 3 | MANIFEST 4 | test.pl 5 | X509.pm 6 | prova.pl 7 | LICENSE 8 | -------------------------------------------------------------------------------- /src/modules/openca-x509/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::X509', 6 | 'VERSION_FROM' => 'X509.pm', # finds $VERSION 7 | 'PREREQ_PM' => 'OpenCA::OpenSSL', 8 | # 'MAN3PODS' => {'X509.pod'}, 9 | 'PREREQ_PM' => { 10 | 'Digest::MD5' => '2.14', 11 | 'X500::DN' => '0.27' 12 | } 13 | ); 14 | -------------------------------------------------------------------------------- /src/modules/openca-x509/test.pl: -------------------------------------------------------------------------------- 1 | # Before `make install' is performed this script should be runnable with 2 | # `make test'. After `make install' it should work as `perl test.pl' 3 | 4 | ######################### We start with some black magic to print on failure. 5 | 6 | # Change 1..1 below to 1..last_test_to_print . 7 | # (It may become useful if the test is moved to ./t subdirectory.) 8 | 9 | BEGIN { $| = 1; print "1..1\n"; } 10 | END {print "not ok 1\n" unless $loaded;} 11 | use OpenCA::X509; 12 | $loaded = 1; 13 | print "ok 1\n"; 14 | 15 | ######################### End of black magic. 16 | 17 | # Insert your test code below (better if it prints "ok 13" 18 | # (correspondingly "not ok 13") depending on the success of chunk 13 19 | # of the test code): 20 | 21 | -------------------------------------------------------------------------------- /src/modules/openca-xml-cache/Cache.pod: -------------------------------------------------------------------------------- 1 | =head1 NAME 2 | 3 | OpenCA::XML::Cache - Perl module to cache the configuration files of OpenCA . 4 | 5 | =head1 SYNOPSIS 6 | 7 | use OpenCA::XML::Cache; 8 | 9 | =head1 DESCRIPTION 10 | 11 | Sorry, no documentation available yet. The module is not complete until now. 12 | 13 | =head1 AUTHOR 14 | 15 | Michael Bell 16 | 17 | =head1 SEE ALSO 18 | 19 | perl(1). 20 | 21 | =cut 22 | -------------------------------------------------------------------------------- /src/modules/openca-xml-cache/Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension OpenCA::XML::Cache. 2 | -------------------------------------------------------------------------------- /src/modules/openca-xml-cache/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | Cache.pm 3 | Cache.pod 4 | MANIFEST 5 | LICENSE 6 | Makefile.PL 7 | t/1.t 8 | -------------------------------------------------------------------------------- /src/modules/openca-xml-cache/Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence 3 | # the contents of the Makefile that is written. 4 | WriteMakefile( 5 | 'NAME' => 'OpenCA::XML::Cache', 6 | 'VERSION_FROM' => 'Cache.pm', # finds $VERSION 7 | # 'MAN3PODS' => {'Cache.pod'} 8 | ); 9 | -------------------------------------------------------------------------------- /src/modules/openca-xml-cache/t/test.pid: -------------------------------------------------------------------------------- 1 | 31149 -------------------------------------------------------------------------------- /src/modules/openca-xml-cache/t/test.xml: -------------------------------------------------------------------------------- 1 | 2 | Yeah, what a nice testfile! 3 | 4 | -------------------------------------------------------------------------------- /src/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/scripts/Makefile -------------------------------------------------------------------------------- /src/scripts/modver.in: -------------------------------------------------------------------------------- 1 | #@SHELL@ 2 | 3 | mod=$1 4 | 5 | if test "x$mod" = "x"; then 6 | echo "Usage: $0 " 7 | exit 8 | fi 9 | 10 | @PERL@ -M$mod -e "print ( \$$mod::VERSION =~ /(\d)\.(\d\d)/ )" 2>/dev/null || echo "000" 11 | 12 | exit 0 13 | 14 | -------------------------------------------------------------------------------- /src/web-interfaces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/batch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/batch/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/batch/htdocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/batch/htdocs/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/batch/htdocs/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/batch/htdocs/images/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/batch/htdocs/index.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Enter Batch System 12 |   13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/web-interfaces/batch/htdocs/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/batch/htdocs/scripts/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ca/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ca/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ca/htdocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ca/htdocs/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ca/htdocs/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ca/htdocs/images/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ca/htdocs/index.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Enter CA 12 |   13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/web-interfaces/ca/htdocs/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ca/htdocs/scripts/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ldap/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ldap/htdocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ldap/htdocs/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ldap/htdocs/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ldap/htdocs/images/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ldap/htdocs/index.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Enter LDAP Gateway 12 |   13 | 14 | 15 | -------------------------------------------------------------------------------- /src/web-interfaces/ldap/htdocs/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ldap/htdocs/scripts/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/node/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/node/htdocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/node/htdocs/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/node/htdocs/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/node/htdocs/images/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/node/htdocs/index.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Enter Node Management 12 |   13 | 14 | 15 | -------------------------------------------------------------------------------- /src/web-interfaces/node/htdocs/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/node/htdocs/scripts/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/pub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/pub/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/pub/htdocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/pub/htdocs/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/pub/htdocs/cacert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/pub/htdocs/cacert/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/pub/htdocs/crl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/pub/htdocs/crl/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/pub/htdocs/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/pub/htdocs/images/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/pub/htdocs/index.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Enter Public Gateway 12 |   13 | 14 | 15 | -------------------------------------------------------------------------------- /src/web-interfaces/pub/htdocs/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/pub/htdocs/scripts/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ra/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ra/htdocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ra/htdocs/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ra/htdocs/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ra/htdocs/images/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/ra/htdocs/index.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Enter RA 12 |   13 | 14 | 15 | -------------------------------------------------------------------------------- /src/web-interfaces/ra/htdocs/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/ra/htdocs/scripts/Makefile -------------------------------------------------------------------------------- /src/web-interfaces/scep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openca/openca-base/90a4416c44e97b4e03a3b163db3598d86b3747ff/src/web-interfaces/scep/Makefile --------------------------------------------------------------------------------