March 2013
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728293031

Categories

March 2013
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728293031

certificate is signed using a weak signature algorithm!

certificate is signed using a weak signature algorithm!

Turns out that this results in SSL certificates that use the weaker MD5 signature hash algorithm which is the cause of the complaint. This is easily fixed by adding ‘-sha1’ to the openssl command line when generating the certificate. Like so:

$ openssl req -new -x509 -sha1 […]