readthefuckingmanual.net

[SOLVED] javax.net.ssl.SSLException: No available certificate or key corresponds to the SSL cipher suites which are enabled.

Error added: 2007-04-16T11:54:59Z

2 people waiting for the answer...

4 answers found.

Answer 563 (68.75% helpful)

peer not authenticated
Permalink

Answer 1446 (44.444443% helpful)

In addition to Answer 1, do:
    String [] sups = sslserversocket.getSupportedCipherSuites ();

    sslserversocket.setEnabledCipherSuites (sups);
Permalink

Answer 290 (33.333332% helpful)

String[] enable = { \"TLS_DH_anon_WITH_AES_128_CBC_SHA\" };
            
server.setEnabledCipherSuites(enable);
Permalink

Answer 1433 (16.666666% helpful)

Answer 1 worked for me. Thanks to whoever posted that.
Permalink

Add an answer/solution

If you know the answer, please add your own solution below.
If you don't know, but find out later, please come back and share your answer - there will be other people struggling with this too.


Please enter 61948 here

If you want to be notified via email when this is solved, enter your email address here: