Hiya. I'm having some trouble getting an ssl socket to communicate with a web browser. If I refresh the page I get "Exception message: error:0A000076:SSL routines::no suitable signature algorithm [SslError]" But if I use the command `openssl s_client -connect 127.0.0.1:5543 -tls1_2`, it seems to connect and behave as expected. It's a self-signed cert but I'd just assume firefox would say "this website isn't secure (etc)" I generated the certificate with `openssl req -x509 -newkey ed448 -days 3650 -noenc -keyout key.pem -out cert.pem`, maybe the way I made it is invalid for a web browser? Thank you