From f13c3003f6adb4b131ef32c6cb57886f37f01ffa Mon Sep 17 00:00:00 2001 From: Gorka Benguria Elguezabal <gorka.benguria@tecnalia.com> Date: Wed, 24 Mar 2021 21:14:32 +0100 Subject: [PATCH] updates README --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a0eaa3e..e878af1 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,32 @@ -# Tecnalia smartdatalab ca +# Tecnalia smartdatalab ca esilab.org ## Objective This is an **autogenerated** ca for tecnalia internal use, the purpose is to avoid disgusting security screens in our systems and projects. We will use this ca to sign certificates for our internal systems, so that we avoid security warnings and we could enable internal trust relationships. -## How to create certificates based on it - -To create certificates based on it for the moment we have to do manually, to do so you can use the private key stored in the private repository - ## How to install the certificate The instalation of the certificate depends both on the operating system and in some cases on the specific application. There are some applications, such as firefox, that does not relay in the operating system certificates repository to validate incoming certificates. ### Windows In windows we can use the cmd or powershell. #### cmd -To enter into the cmd, press windows key + r, write cmd, and press enter. That will open the cmd console. Write the following commands to install this certificate. +To enter into the cmd, press windows key + r, write cmd, and press enter. That will open the cmd console. Write the following commands to install this certificate. Adding certificate this way will make it valid in chrome, edge and internet explorer. <pre> set CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem -set CA_FILE_PATH=%TEMP%ca.crt.pem -echo download ca +set CA_FILE_PATH=%TEMP%\ca.crt.pem +echo download ca from %CA_RAW_URL% to %CA_FILE_PATH% powershell -command "$cli = New-Object System.Net.WebClient; $cli.DownloadFile('%CA_RAW_URL%', '%CA_FILE_PATH%')" +echo check downloaded ca +type %CA_FILE_PATH% echo add ca to the certificate store -certutil -addstore -user -f "Root" "%CA_FILE_PATH%" +certutil -addstore -user -f "Root" "%CA_FILE_PATH%" </pre> ### Linux To be provided +## How to create certificates based on it + +To create certificates based on it for the moment we have to do manually, to do so you can use the private key stored in the private repository -- GitLab