How to add ssl to untrusted SSL cerificate for Vivaldi Linux?
-
Does it have a way to add SSL cerificate to make it block me to open website or something when this ssl appear like untrusted ssl in windows?
-
Yes. But only for the local user. With a tool called certutil.
f.ex.
certutil -d sql:$HOME/.pki/nssdb -A -t TC -n "YOUR.DOMAIN.TLD" -i your-cert.crt
After import you can list these added certificates:
certutil -d sql:$HOME/.pki/nssdb -L
http://blog.avirtualhome.com/adding-ssl-certificates-to-google-chrome-linux-ubuntu
https://access.redhat.com/documentation/en-US/Red_Hat_Directory_Server/8.1/html/Administration_Guide/Managing_SSL-Using_certutil.html
https://www.centos.org/docs/5/html/CDS/ag/8.0/Managing_SSL-Using_certutil.html
-
Hi Gwen-Dragon,
Thanks for the very quick answer! By the way, I found out the hard way that using "~/.pki/nssdb" led to this error. Of course - you used $HOME... anyway...
Regards from Salzburg
-
Hi again,
If I understnd the issue correctly, browsers store a list of trusted CAs. Is there a way to store a "self-signed" crt in Vivaldi? Could one do it via Chrome?
Basically this is only of "academic" interest to me, since it only concerns my internal, LAN-connected client/server systems. Nevertheless...
Regards
H. S.
-
@hstoellinger Chromium like browsers have their own database of trusted certs.
If you need own certs the only way is to add local for user by the tools of Linux as i mentioned with certutil.