Add cipher suites to JSSE provider #1967
Unanswered
aDramaQueen
asked this question in
Q&A
Replies: 1 comment
-
I doubt the ciphers are missing. The error message is saying none of the cipher suites can be selected. By far the most common reason for that is misconfiguration of the server's key store (KeyManagerFactory) - so no cipher suite can be selected because no suitable server credentials can be located. The first thing to check is that you have the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
i managed to run Bouncy Castle JSSE with Spring Boot. Problem: If i run the application with
BCJSSE
my TLS connection gets rejected:If I run this application with the default JSSE provider (
SunJSSE
) everything works.Now the question: Is there a special place, where i may add the missing ciphers?
Beta Was this translation helpful? Give feedback.
All reactions