-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cipher Suite negotiation failure in LW8 / ssl-ctx is not initialized #224
Comments
This looks like an SSL version incompatibility between your server and your client. Is it possible that your server uses a very old SSL version that does not support modern ciphers? Can you look at the debug logs on the server side to determine what TLS version is being used? |
Well, client and server is on the same host. It works with SBCL and cl+ssl. |
What is the platform that it does not work with? From the error message, I would suspect LispWorks. Is it possible that LispWorks uses a different (outdated) version of OpenSSL? |
Hmm, it's LispWorks 8.0.1. The latest. I'll try to check what version they have bundled. |
Please check PR #225. |
Fixed with #225 |
I'm receiving the following error when trying to connect with a client to hunchentoot with SSL acceptor.
I've tracked it down to
ctx-configure-callback
function, as set up byattach-ssl
not being called.Despite
initialize-connection-stream
andmake-ssl-server-stream
are called (in ssl.lisp).Anyone got an idea?
The text was updated successfully, but these errors were encountered: