├── .gitignore ├── LICENSE ├── README.md ├── primekey_logo.png └── scripts ├── azure_keyvault_importcert ├── README.md └── keyVault_ImportCert.sh ├── bulk_revoke ├── README.md └── revoke.sh ├── csv_to_endentity ├── README.md └── csv_to_endentity.sh ├── custom_expire_script ├── README.md ├── custCertExp └── cust_certexpire.sh └── healthcheck_cmpv2 ├── README.md └── check_cmpv2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/README.md -------------------------------------------------------------------------------- /primekey_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/primekey_logo.png -------------------------------------------------------------------------------- /scripts/azure_keyvault_importcert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/azure_keyvault_importcert/README.md -------------------------------------------------------------------------------- /scripts/azure_keyvault_importcert/keyVault_ImportCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/azure_keyvault_importcert/keyVault_ImportCert.sh -------------------------------------------------------------------------------- /scripts/bulk_revoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/bulk_revoke/README.md -------------------------------------------------------------------------------- /scripts/bulk_revoke/revoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/bulk_revoke/revoke.sh -------------------------------------------------------------------------------- /scripts/csv_to_endentity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/csv_to_endentity/README.md -------------------------------------------------------------------------------- /scripts/csv_to_endentity/csv_to_endentity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/csv_to_endentity/csv_to_endentity.sh -------------------------------------------------------------------------------- /scripts/custom_expire_script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/custom_expire_script/README.md -------------------------------------------------------------------------------- /scripts/custom_expire_script/custCertExp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/custom_expire_script/custCertExp -------------------------------------------------------------------------------- /scripts/custom_expire_script/cust_certexpire.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/custom_expire_script/cust_certexpire.sh -------------------------------------------------------------------------------- /scripts/healthcheck_cmpv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/healthcheck_cmpv2/README.md -------------------------------------------------------------------------------- /scripts/healthcheck_cmpv2/check_cmpv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keyfactor/ejbca-tools/HEAD/scripts/healthcheck_cmpv2/check_cmpv2 --------------------------------------------------------------------------------