I’ve been trying to follow the tutorial here, after failing to apply it to my project I tried to do the tutorial as it is, and I’m still getting handshaking failures.

On the server side, I have the following exception: javax.net.ssl.SSLHandshakeException: No available authentication scheme

While on the client side, I have the following: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure

I’d like to add that I’m starting fresh without any previous any keystore nor truststore, executing the commands in the tutorial does generate the key and trust stores.

I’ve tried making the CN the same as my machine hostname too, didn’t work, nothing worked, the server and the client could never handshake.

Side note: this is just a demo I’m doing, so I don’t really care if it has security flaws, I’m just trying to get TLS to work.

Thx in advance.

Update: I downgraded from JDK21 to JDK17 and it worked fine :/

  • DeepThought42@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    6 months ago

    Try adding “-Djavax.net.debug=all” to your client command line. The output should point you to what exactly is the matter. Most likely something isn’t right with the certs and/or keystore.