User Tools

Site Tools


howtos:add_trusted_ca
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Last revision
howtos:add_trusted_ca [02/12/2018 21:34] – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Make CA or Certificate trusted ======
  
 +For the time being there is no gui way of trusting a certificate in Chrome on Linux.
 +
 +To trust a certificate/CA you must do the following:
 +
 +**__1. Install certutil__**
 +<code>
 +sudo apt-get install libnss3-tools
 +</code>
 +**__2. Run certutil__**
 +<code>
 +certutil -d sql:$HOME/.pki/nssdb -A -t TC -n "domingo.dk" -i domingo.dk.crt
 +</code>
 +
 +The certificate is inside the file called //"domingo.dk.crt"//.
 +====== Import script ======
 +
 +<file>
 +#!/bin/sh
 +#
 +# usage:  import-cert.sh remote.host.name [port]
 +#
 +REMHOST=$1
 +REMPORT=${2:-443}
 +exec 6>&1
 +exec > $REMHOST
 +echo | openssl s_client -connect ${REMHOST}:${REMPORT} 2>&1 |sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p'
 +certutil -d sql:$HOME/.pki/nssdb -A -t TC -n "$REMHOST" -i $REMHOST 
 +exec 1>&6 6>&-
 +</file>
 +
 +Example:
 +<code>
 +./import-cert.sh domingo.dk
 +</code>
 +
 +
 +----
 +Script source: http://blog.avirtualhome.com/2010/02/02/adding-ssl-certificates-to-google-chrome-linux-ubuntu/
howtos/add_trusted_ca.txt · Last modified: 16/02/2023 07:07 by domingo