Aloe Express; sha256RSA;

Hello,

I use the great Aloe Express server providing a https-page.

I set up the https like this:
WSServer = new AloeExpress.Server()

WSServer.Port = 8443
WSServer.Secure = True
WSServer.ConnectionType = SSLSocket.TLSv12

WSServer.CertificateFile = GetFolderItem(“C:\Temp”).child(“test.com.crt”)

The page is served with message “unsecure” which is correct as this certificate is for test purposes only.
I can then click on extended and go forward to served page.

But, another certificate does not work.
For the other, even valid certificate, no page is served at all; the request even does get into the code.

They both are different concerning “signature algorithm”
test.com.crt is sha1RSA
mine.crt is sha256RSA

My knowledge about the openssl tool is somewhat limited; the error messages from this tool are very often generic -> useless.

Is sha256RSA known to need more settings in Aloe Express add-on?