Solved: Chrome v18, self signed certs and “signed using a weak signature algorithm”
Posted
by David Christiansen
on Geeks with Blogs
See other posts from Geeks with Blogs
or by David Christiansen
Published on Mon, 02 Apr 2012 13:21:05 GMT
Indexed on
2012/04/02
17:30 UTC
Read the original article
Hit count: 282
So chrome has just updated itself automatically and you are now running v18 – great. Or is it…
If like me, you are someone that are running sites using a self-signed SSL Certificate (i.e. when running a site on a developer machine) you may come across the following lovely message;
Fear not, this is likely as a result of you following instructions you found on the apache openssl site which results in a self signed cert using the MD5 signature hashing algorithm.
The simple fix is to generate a new certificate specifying to use the SHA1 signature hashing algorithm, like so;
openssl req -new -x509 -sha1 -nodes -out server.crt -keyout server.key
Simples!
© Geeks with Blogs or respective owner